00001 #ifndef REBECCA_FRAMEWORK_AIML_H
00002 #define REBECCA_FRAMEWORK_AIML_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 #include <rebecca/framework/Tag.h>
00028 #include <rebecca/framework/Topic.h>
00029
00030
00031
00032
00033
00034 #ifdef _WIN32
00035 # pragma warning ( push )
00036 # pragma warning( disable : 4251 )
00037 # pragma warning( disable : 4290 )
00038 #endif
00039
00040 namespace rebecca
00041 {
00042 namespace framework
00043 {
00044 namespace impl
00045 {
00046
00047
00048
00049
00050
00061 class AIMLImpl;
00062
00063 class GraphBuilderFramework;
00064
00076 class REBECCA_EXPORT AIML : public Tag
00077 {
00078
00079 public:
00080
00095 AIML()
00096 throw(InternalProgrammerErrorException &);
00097
00109 virtual void setAttribute(const StringPimpl &name,
00110 const StringPimpl &value)
00111 throw(InternalProgrammerErrorException &);
00112
00133 virtual void handleInnerTag(Tag *tag)
00134 throw(InternalProgrammerErrorException &);
00135
00140 virtual ~AIML();
00141
00142 private:
00143
00154 AIMLImpl *m_pimpl;
00155 };
00156
00157
00158 }
00159
00160
00161 using rebecca::framework::impl::AIML;
00162
00163 }
00164 }
00165
00166 #ifdef _WIN32
00167 # pragma warning ( pop )
00168 #endif
00169
00170 #endif
00171