home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ocl_ani2.zip / ocl_ani2.cpp < prev    next >
Text File  |  1997-07-06  |  512b  |  27 lines

  1. /* Stéphane Charette, stephane@venus.ubishops.ca
  2.  * IBM Open Class Library Animation Sample #2
  3.  * (using Visual Age C++ v3.0 with OS/2 v4.0)
  4.  * 1997July06
  5.  */
  6.  
  7. /* includes */
  8. #include "ocl_ani2.hpp"    // class definitions
  9.  
  10. /* function prototype */
  11. int main( void );
  12.  
  13.  
  14. int main()
  15. {
  16.    // create the frame window
  17.    Application *frame = new Application();
  18.  
  19.    // run until the window is closed
  20.    IApplication::current().run();
  21.  
  22.    // free resources
  23.    delete( frame );
  24.  
  25.    return 0;
  26. }
  27.