00001 #ifndef REBECCA_FRAMEWORK_LI_H
00002 #define REBECCA_FRAMEWORK_LI_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 LiImpl;
00060
00072 class REBECCA_EXPORT Li: public InnerTemplateListImpl
00073 {
00074 public:
00075
00085 Li()
00086 throw(InternalProgrammerErrorException &);
00087
00099 virtual void setAttribute(const StringPimpl &name, const StringPimpl &value)
00100 throw(InternalProgrammerErrorException &);
00101
00113 virtual StringPimpl getPredicateName() const
00114 throw(InternalProgrammerErrorException &);
00115
00127 virtual StringPimpl getAimlPattern() const
00128 throw(InternalProgrammerErrorException &);
00129
00145 virtual bool isDefaultListItem() const
00146 throw(InternalProgrammerErrorException &);
00147
00163 virtual bool isValueOnlyListItem() const
00164 throw(InternalProgrammerErrorException &);
00165
00183 virtual bool isNameAndValueListItem() const
00184 throw(InternalProgrammerErrorException &);
00185
00190 virtual ~Li();
00191
00192 private:
00193
00204 shared_ptr<LiImpl> m_pimpl;
00205 };
00206
00207 }
00208
00209
00210 using rebecca::framework::impl::Li;
00211
00212 }
00213 }
00214
00215 #ifdef _WIN32
00216 # pragma warning ( pop )
00217 #endif
00218
00219 #endif