home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / g / gina15.zip / sample / empty.C next >
C/C++ Source or Header  |  1992-02-27  |  271b  |  20 lines

  1. /* @(#)empty.C    1.3 11/15/91 */
  2.  
  3. /* Empty GINA application */
  4.  
  5. #include <Gina/Gina.h>
  6.  
  7. #ifdef INCLUDE_SRC
  8. #include "Gina.C"
  9. #endif
  10.  
  11. void main(unsigned int argc, char **argv) {
  12.  
  13.     GnApplication app;
  14.  
  15. #ifdef GINA_DEBUG
  16.     app.set_sync();
  17. #endif
  18.     app.run(argc,argv);
  19. }
  20.