00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __HOM_SubnetIndirectInput_h__
00017 #define __HOM_SubnetIndirectInput_h__
00018
00019 #include "HOM_API.h"
00020 #include "HOM_Defines.h"
00021 #include "HOM_Errors.h"
00022 #include "HOM_Module.h"
00023
00024 class HOM_Node;
00025
00026 SWIGOUT(%rename(SubnetIndirectInput) HOM_SubnetIndirectInput;)
00027
00028 class HOM_API HOM_SubnetIndirectInput
00029 {
00030 public:
00031 HOM_SubnetIndirectInput()
00032 { HOM_CONSTRUCT_OBJECT(this) }
00033 HOM_SubnetIndirectInput(const HOM_SubnetIndirectInput &input)
00034 { HOM_CONSTRUCT_OBJECT(this) }
00035 virtual ~HOM_SubnetIndirectInput()
00036 { HOM_DESTRUCT_OBJECT(this) }
00037
00038
00039
00040 virtual bool operator==(HOM_SubnetIndirectInput *input)
00041 throw(HOM_ObjectWasDeleted, HOM_Error) = 0;
00042 virtual bool operator!=(HOM_SubnetIndirectInput *input)
00043 throw(HOM_ObjectWasDeleted, HOM_Error) = 0;
00044
00045 virtual int __hash__() throw(HOM_Error) = 0;
00046 virtual std::string __repr__() throw(HOM_ObjectWasDeleted, HOM_Error) = 0;
00047
00048 virtual int number() throw(HOM_ObjectWasDeleted, HOM_Error) = 0;
00049
00050 virtual HOM_Node *parent() throw(HOM_ObjectWasDeleted, HOM_Error) = 0;
00051 };
00052
00053 #endif