home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
-
- ATalk.c
-
- A ATalk main file for writing adsp programs with the
- THINK Class Library
-
-
- You will need the dialog objects and the table objects.
- All that just so that I can ask you to pick another participant.
-
-
- Copyright © 1992 Bernard Bernstein. All rights reserved.
-
- ******************************************************************************/
-
-
- #include "CATalkApp.h"
-
-
- void main()
-
- {
- CATalkApp *ATalkApp;
-
- ATalkApp = new CATalkApp;
-
- ATalkApp->IATalkApp();
- ATalkApp->Run();
- ATalkApp->Exit();
- }
-