////////////////////////////////////////////////////////// // WINDOWS++ CLASS LIBRARY. Copyright 1992 Paul DiLascia. // FILE: HELLO.CPP // #include APPCLASS HelloWin : public WPMainWin { public: HelloWin() { createWin("Hello"); } void paint(WPPaintStruct &ps) { WPRect clientArea = this; ps.drawText(clientArea, "Hello, Windows++.", DT_SINGLELINE | DT_CENTER | DT_VCENTER); } }; void WPApp::main() { mainWin = new HelloWin; run(); }