//---------------------------------------------------------------------------- // ObjectWindows - (C) Copyright 1991, 1994 by Borland International // Tutorial application -- step01.cpp //---------------------------------------------------------------------------- #include #include #include class TDrawApp : public TApplication { public: TDrawApp() : TApplication() {} void InitMainWindow() { SetMainWindow(new TFrameWindow(0, "Sample ObjectWindows Program")); } }; int OwlMain(int /*argc*/, char* /*argv*/ []) { return TDrawApp().Run(); }