home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / netnwscd.sit / News.c < prev    next >
C/C++ Source or Header  |  1990-10-04  |  373b  |  23 lines

  1. /*****
  2.  * News.c
  3.  *
  4.  *    A starter main file for writing programs with the
  5.  *    THINK Class Library
  6.  *
  7.  *  Copyright ⌐ 1990 Symantec Corporation.  All rights reserved.
  8.  *
  9.  *****/
  10.  
  11. #include "CNewsApp.h"
  12.  
  13. extern    CApplication    *gApplication;
  14.  
  15. void main()
  16.  
  17. {
  18.     gApplication = new(CNewsApp);
  19.     ((CNewsApp *)gApplication)->IStarterApp();
  20.     gApplication->Run();
  21.     gApplication->Exit();
  22. }
  23.