home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
online
/
source
/
cpp
/
graphics
/
Conics.sit.hqx
/
Conics
/
Sources
/
ConicApp.cpp
< prev
next >
Wrap
Text File
|
1996-11-08
|
318b
|
18 lines
//Copyright 1996 Aidan Cully
//All rights reserved
#include "ConicApp.h"
#include "MenuHandler.h"
TApplication::TInitStat TConicApp::Init() {
TApplication::Init();
theApp = this;
mbar = new TConicHandler;
mbar->Init( this );
mbar->MakeActive();
}
TApplication::TAppQuit TConicApp::QuitSelf() {
delete mbar;
}