00001 #ifndef REBECCA_FRAMEWORK_PATTERNSIDETHAT_H
00002 #define REBECCA_FRAMEWORK_PATTERNSIDETHAT_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
00030 #ifdef _WIN32
00031 # pragma warning ( push )
00032 # pragma warning( disable : 4251 )
00033 # pragma warning( disable : 4290 )
00034 #endif
00035
00036
00037 #include <rebecca/framework/InnerCategory.h>
00038 #include <rebecca/framework/InnerTemplate.h>
00039
00040 namespace rebecca
00041 {
00042 namespace framework
00043 {
00044 namespace impl
00045 {
00046
00047
00048
00049
00050
00061 class PatternSideThatImpl;
00062 class GraphBuilderFramework;
00063
00076 class REBECCA_EXPORT PatternSideThat : public InnerCategory
00077 {
00078 public:
00079
00091 PatternSideThat()
00092 throw(InternalProgrammerErrorException &);
00093
00108 virtual void addCharacters(const StringPimpl &characters)
00109 throw(InternalProgrammerErrorException &);
00110
00120 virtual StringPimpl getString() const
00121 throw(InternalProgrammerErrorException &);
00122
00137 virtual const StringPimpl &getStringConstRef() const
00138 throw(InternalProgrammerErrorException &);
00139
00144 virtual ~PatternSideThat();
00145
00146 private:
00147
00158 PatternSideThatImpl *m_pimpl;
00159 };
00160
00161 }
00162
00163
00164 using rebecca::framework::impl::PatternSideThat;
00165
00166 }
00167 }
00168
00169 #ifdef _WIN32
00170 # pragma warning ( pop )
00171 #endif
00172
00173 #endif
00174