home *** CD-ROM | disk | FTP | other *** search
- #include <IV-look/kit.h>
- #include <InterViews/background.h>
- #include <InterViews/session.h>
- #include <InterViews/style.h>
- #include <InterViews/window.h>
-
- int main(int argc, char** argv) {
- Session* session = new Session("Himom", argc, argv);
- Style* style = session->style();
- session->run_window(
- new ApplicationWindow(
- new Background(
- Kit::instance()->label("hi mom!", style),
- style->background()
- )
- )
- );
- }
-