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 / Include / ConicApp.h < prev    next >
Text File  |  1996-11-08  |  284b  |  18 lines

  1. //Copyright 1996 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __CONICAPP_H
  5. #define __CONICAPP_H
  6.  
  7. #include "Application.h"
  8. #include "MenuHandler.h"
  9.  
  10. class TConicApp:public TApplication {
  11. protected:
  12.     TConicHandler *mbar;
  13.     virtual TAppQuit QuitSelf();
  14. public:
  15.     TInitStat Init();
  16. };
  17.  
  18. #endif