home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-13 | 355 b | 22 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __CONICAPP_H
- #define __CONICAPP_H
-
- #include "CLApplication.h"
- #include "MenuHandler.h"
- #include <Drag.h>
-
- class TConicApp:
- public TApplication
- {
- protected:
- TConicHandler *mConicHandler;
- virtual void QuitSelf();
- virtual BOOLEAN RunSelf();
- DragTrackingHandlerUPP mDrag;
- public:
- };
-
- #endif