home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Conic Sections 0.9.2 / Include / ConicApp.h < prev    next >
Encoding:
Text File  |  1997-06-13  |  355 b   |  22 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __CONICAPP_H
  5. #define __CONICAPP_H
  6.  
  7. #include "CLApplication.h"
  8. #include "MenuHandler.h"
  9. #include <Drag.h>
  10.  
  11. class TConicApp:
  12.     public TApplication
  13. {
  14. protected:
  15.     TConicHandler *mConicHandler;
  16.     virtual void QuitSelf();
  17.     virtual BOOLEAN RunSelf();
  18.     DragTrackingHandlerUPP mDrag;
  19. public:
  20. };
  21.  
  22. #endif