#ifndef ABOUT_HPP #define ABOUT_HPP #include //IFrameWindow Class (Parent) #include //ICommandHandler (Parent) #include "bogwin.hpp" //************************************************************************** // Class: AboutDialog // // Purpose: Dialog window for the About Box //************************************************************************** class AboutDialog : public IFrameWindow, public ICommandHandler { public: AboutDialog (IWindow * ownerWnd, unsigned long rid, TBogWindow* pbwindow) ; ~AboutDialog(); protected: virtual Boolean command(ICommandEvent& cmdevt); //Process the dialog command events private: }; #endif