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 >
Text File  |  1996-11-08  |  318b  |  18 lines

  1. //Copyright 1996 Aidan Cully
  2. //All rights reserved
  3.  
  4. #include "ConicApp.h"
  5. #include "MenuHandler.h"
  6.  
  7. TApplication::TInitStat TConicApp::Init() {
  8.     TApplication::Init();
  9.  
  10.     theApp = this;
  11.     mbar = new TConicHandler;
  12.     mbar->Init( this );
  13.     mbar->MakeActive();
  14. }
  15.  
  16. TApplication::TAppQuit TConicApp::QuitSelf() {
  17.     delete mbar;
  18. }