00001 #ifndef REBECCA_FRAMEWORK_SET_H
00002 #define REBECCA_FRAMEWORK_SET_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifdef _WIN32
00030 # pragma warning ( push )
00031 # pragma warning( disable : 4251 )
00032 # pragma warning( disable : 4290 )
00033 #endif
00034
00035
00036 #include <rebecca/framework/InnerTemplateListImpl.h>
00037
00038 namespace rebecca
00039 {
00040 namespace framework
00041 {
00042 namespace impl
00043 {
00044
00045
00046
00047
00048
00059 class SetImpl;
00060 class GraphBuilderFramework;
00061
00073 class REBECCA_EXPORT Set : public InnerTemplateListImpl
00074 {
00075
00076 public:
00077
00094 Set(GraphBuilderFramework &builder)
00095 throw(InternalProgrammerErrorException &);
00096
00112 virtual StringPimpl getString() const
00113 throw(InternalProgrammerErrorException &);
00114
00126 virtual void setAttribute(const StringPimpl &name, const StringPimpl &value) throw(InternalProgrammerErrorException &);
00127
00132 virtual ~Set();
00133
00134 private:
00135
00146 shared_ptr<SetImpl> m_pimpl;
00147 };
00148
00149 }
00150
00151
00152 using rebecca::framework::impl::Set;
00153
00154 }
00155 }
00156
00157 #ifdef _WIN32
00158 # pragma warning ( pop )
00159 #endif
00160
00161 #endif
00162