home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / optima / hpp.z / MMPROPST.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-29  |  547 b   |  20 lines

  1. #ifndef _MMPROPST_HPP
  2. #define _MMPROPST_HPP
  3.  
  4. #include "mmpctrl.hpp"
  5. class MTPropertySheetBase;
  6.  
  7. class METACLASSDEF MMPropertySheet : public MMCommon {
  8.     public:
  9.     MMPropertySheet( const MMPropertySheetData * data );
  10.     MMPropertySheet() {}
  11.  
  12.     virtual WConstantString            GetDesc() const;
  13.     virtual long                GetResourceID() const;
  14.     virtual unsigned            GetNumControls() const;
  15.     virtual const MMPropertyControl *   GetControl( unsigned i ) const;
  16.     virtual MTPropertySheetBase *        MakeSheet() const;
  17. };
  18.  
  19. #endif // _MMPROPST_HPP
  20.