00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __HOM_DopRelationship_h__
00017 #define __HOM_DopRelationship_h__
00018
00019 #include "HOM_API.h"
00020 #include "HOM_DopData.h"
00021
00022 SWIGOUT(%rename(DopRelationship) HOM_DopRelationship;)
00023
00024 class HOM_API HOM_DopRelationship : virtual public HOM_DopData
00025 {
00026 public:
00027 HOM_DopRelationship()
00028 { HOM_CONSTRUCT_OBJECT(this) }
00029 HOM_DopRelationship(const HOM_DopRelationship &doprelationship)
00030 : HOM_DopData(doprelationship)
00031 { HOM_CONSTRUCT_OBJECT(this) }
00032 virtual ~HOM_DopRelationship()
00033 { HOM_DESTRUCT_OBJECT(this) }
00034
00035 virtual std::string __repr__()
00036 throw(HOM_ObjectWasDeleted, HOM_Error) = 0;
00037
00038 virtual std::string name()
00039 throw(HOM_ObjectWasDeleted, HOM_Error) = 0;
00040
00041 virtual bool matches(const char *pattern)
00042 throw(HOM_ObjectWasDeleted, HOM_Error) = 0;
00043 };
00044
00045 #endif
00046