home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CADSP 1.0 / Demo / ATalk.c next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  609 b   |  32 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  
  3.   ATalk.c
  4.  
  5.      A ATalk main file for writing adsp programs with the
  6.      THINK Class Library
  7.  
  8.  
  9.      You will need the dialog objects and the table objects.
  10.      All that just so that I can ask you to pick another participant.
  11.  
  12.  
  13.   Copyright © 1992 Bernard Bernstein.  All rights reserved.
  14.   
  15. ******************************************************************************/
  16.  
  17.  
  18. #include "CATalkApp.h"
  19.  
  20.  
  21. void main()
  22.  
  23. {
  24.     CATalkApp    *ATalkApp;                    
  25.  
  26.     ATalkApp = new CATalkApp;
  27.     
  28.     ATalkApp->IATalkApp();
  29.     ATalkApp->Run();
  30.     ATalkApp->Exit();
  31. }
  32.