home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / VCOLORS.ZIP / COLORS.CPP next >
Encoding:
C/C++ Source or Header  |  1993-06-29  |  381 b   |  27 lines

  1. //
  2. //    colors.cpp
  3. //
  4. //    Copyright (c) 1993, by Liant Software Corp.
  5. //    ALL RIGHTS RESERVED.
  6. //
  7. //    Revision History:
  8. //    -----------------
  9. //
  10.  
  11. #include "notifier.h"
  12. #include "colorvw.h"
  13.  
  14. char *CTWindow = __FILE__;
  15.  
  16. int cvmain(int ac, char **av)
  17. {
  18.     ColorView *v = new ColorView();
  19.  
  20.     v->show(StyleMaximized);
  21.  
  22.     notifier->start();
  23.  
  24.     delete v;
  25.     return(TRUE);
  26. }
  27.