#ifndef _FRAMEDIALOG_HPP_ #define _FRAMEDIALOG_HPP_ #include class FrameDialog : public DWindow { public: FrameDialog(HWND hParent); ~FrameDialog(); WORD performFrameDialog(int &numFrames); private: int DlgProc(UINT message,WPARAM wParam,LPARAM lParam); HWND mhParent; HINSTANCE mhInstance; int mFrames; }; #endif