home *** CD-ROM | disk | FTP | other *** search
- //************************************************************
- // Container Control - Dates and Times as CDATE/CTIME
- //
- // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
- // Copyright (c) 1997 John Wiley & Sons, Inc.
- // All Rights Reserved.
- //************************************************************
- #include <iapp.hpp>
- #include "developr.hpp"
-
-
-
- void main ()
- {
-
- DeveloperList developers("Developer List");
-
- // Show the details view.
- developers.container()
- .showDetailsView()
- .setFocus();
-
- developers
- .show();
-
- IApplication::current().run();
- }