00001 //------------------------------------------------------------------------------ 00002 #ifndef oSysTxObject_h 00003 #define oSysTxObject_h 1 00004 //------------------------------------------------------------------------------ 00005 00006 #include "d_Object.h" 00007 #include "d_Ref_Any.h" 00008 //------------------------------------------------------------------------------ 00009 00010 class oSysTxObject : public d_Object 00011 { 00012 public: 00013 oSysTxObject(); 00014 oSysTxObject( oObjectStream* iObj ); 00015 00016 // INTERNAL CONSTRUCTOR 00017 oSysTxObject( d_Object::DynaFactoryConstructor* iObj ){;} 00018 virtual void d_deactivate(); 00019 00020 d_Char getAction() const; 00021 d_Ref_Any getRef() const; 00022 d_Binary* getStream(); 00023 00024 private: 00025 d_Char action; 00026 d_Ref_Any ref; 00027 d_Binary stream; 00028 }; 00029 //------------------------------------------------------------------------------ 00030 //------------------------------------------------------------------------------ 00031 //------------------------------------------------------------------------------ 00032 00033 #endif 00034
1.3-rc1