home *** CD-ROM | disk | FTP | other *** search
- /*
- ** main function for Scribble applictation
- **
- ** Copyright © 1991 Mark Gross
- ** (RR2, Box 84, Clayville, NY 13322);
- ** this file may be published everywhere, but no charge
- ** may be made for its use. Please contact me about any bugs found.
- */
-
- #include "TScribbleApp.h"
- #include <oops.h>
-
- main()
- {
- TScribbleApp *theApp;
-
- MoreMasters();
- MoreMasters();
-
- theApp = (TScribbleApp *)new(TScribbleApp);
- theApp->Init();
-
- if(theApp->InitApp() )
- {
- if(!theApp->OpenDocFromFinder() )
- theApp->OpenNewDoc();
-
- theApp->EventLoop();
- theApp->CleanUp();
- }
- }/*the end*/
-