//---------------------------------------------------------------------------- // Project Puh // jyu // Copyright © 1996. All Rights Reserved. // // SUBSYSTEM: Puh Application // FILE: formpuh.h // AUTHOR: vl // // OVERVIEW // ~~~~~~~~ // Class definition for TFormPuh (TDialog). // //---------------------------------------------------------------------------- #if !defined(formpuh_h) // Sentry, use file only if it's not already included. #define formpuh_h #include "puhapp.rh" // Definition of all resources. #include //{{TDialog = TFormPuh}} class TFormPuh : public TDialog, public TVbxEventHandler { public: TFormPuh(TWindow* parent, TResId resId = IDD_FORMPUH, TModule* module = 0); virtual ~TFormPuh(); //{{TFormPuhRSP_TBL_BEGIN}} protected: void ChangeNimi(VBXEVENT FAR *event); //{{TFormPuhRSP_TBL_END}} DECLARE_RESPONSE_TABLE(TFormPuh); }; //{{TFormPuh}} #endif // formpuh_h sentry.