00001 #ifndef _IT_WSDL_WSDL_PART_H_
00002 #define _IT_WSDL_WSDL_PART_H_
00003
00004
00005
00006
00007 #include <it_wsdl/api_defines.h>
00008
00009 #include <it_bus/qname.h>
00010 #include <it_wsdl/wsdl_node.h>
00011
00012
00013 namespace IT_WSDL
00014 {
00015 class WSDLMessage;
00016
00021 class IT_WSDL_API WSDLPart : virtual public WSDLExtensibleNode
00022 {
00023 public:
00030 virtual WSDLMessage &
00031 get_message() = 0;
00032
00039 virtual const WSDLMessage &
00040 get_message() const = 0;
00041
00048 virtual const IT_Bus::String &
00049 get_name() const = 0;
00050
00057 virtual const IT_Bus::QName &
00058 get_element() const = 0;
00059
00066 virtual const IT_Bus::QName &
00067 get_type() const = 0;
00068
00069 protected:
00070 WSDLPart() {}
00071
00072 private:
00073
00074 WSDLPart &
00075 operator = (
00076 const WSDLPart& rhs
00077 );
00078
00079 WSDLPart(
00080 const WSDLPart& rhs
00081 );
00082 };
00083 }
00084
00085 #endif