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

  1. // Design Time Java Socket implementation. (HPP)
  2.  
  3. #ifndef _DTJSOCK_HPP
  4. #define _DTJSOCK_HPP
  5.  
  6. #include "dtjobjct.hpp"
  7.                       
  8. class METAEXPORTCLASSDEF DTJSocket : public DTJObject
  9. {
  10.     public:
  11.         DTJSocket( const MetaObject * pMetaObj );
  12.         virtual ~DTJSocket();
  13.         
  14.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  15.                    ostream& src,
  16.                    MMCodeGenerationParms& pGenParms );
  17. };
  18.  
  19. extern WBool METAEXPORTDEF DP_JSockEnum( const DTObject *, const MMBaseProperty * );
  20.  
  21. // needed for mdreader
  22. typedef DTJSocket DTpowersoft__dot__powerj__dot__net__dot__Socket__dot__102;
  23.  
  24. #endif // _DTJSOCK_HPP
  25.