home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-06-23 | 569 b | 29 lines | [TEXT/KAHL] |
- /******************************************************************************
-
- HyperCuber.c
-
- A starter main file for writing programs with the
- THINK Class Library
-
- Copyright © 1990 Symantec Corporation. All rights reserved.
-
- ******************************************************************************/
-
-
- #include "CHyperCuberApp.h"
- #include <string.h>
-
- #define __TCL_DEBUG__
-
- void main()
-
- {
- CHyperCuberApp *HyperCuberApp;
-
- HyperCuberApp = new CHyperCuberApp;
- HyperCuberApp->IHyperCuberApp();
-
- HyperCuberApp->Run();
- HyperCuberApp->Exit();
- }
-