home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjpanel.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  703 b   |  29 lines

  1. #ifndef _DTJPANEL_HPP
  2. #define _DTJPANEL_HPP
  3.  
  4. #include "dtjcont.hpp"
  5.  
  6. class METAEXPORTCLASSDEF DTJPanel : public DTJContainer
  7. {
  8.     public:
  9.         DTJPanel( const MetaObject * pMetaObj );
  10.         virtual ~DTJPanel();
  11.  
  12.     virtual void GenFileFragment( MMFileFragment fg, WStringList &,
  13.                       MMFileGenerationParms * parms ) const;
  14.  
  15.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  16.                    ostream& src,
  17.                    MMCodeGenerationParms& pGenParms );
  18.  
  19.     protected:
  20.         void GenerateHTML( ostream& src,
  21.                MMJCodeGenerationParms* pGenParms) const;
  22. };
  23.  
  24. // needed for mdreader
  25. typedef DTJPanel DTjava__dot__awt__dot__Panel__dot__102;
  26.  
  27. #endif // _DTJPANEL_HPP
  28.  
  29.