home *** CD-ROM | disk | FTP | other *** search
- //
- // colors.cpp
- //
- // Copyright (c) 1993, by Liant Software Corp.
- // ALL RIGHTS RESERVED.
- //
- // Revision History:
- // -----------------
- //
-
- #include "notifier.h"
- #include "colorvw.h"
-
- char *CTWindow = __FILE__;
-
- int cvmain(int ac, char **av)
- {
- ColorView *v = new ColorView();
-
- v->show(StyleMaximized);
-
- notifier->start();
-
- delete v;
- return(TRUE);
- }