AimlFacade.h

00001 #ifndef REBECCA_AIMLFACADE_H
00002 #define REBECCA_AIMLFACADE_H
00003 
00004 /*
00005  * RebeccaAIML, Artificial Intelligence Markup Language 
00006  * C++ api and engine.
00007  *
00008  * Copyright (C) 2005 Frank Hassanabad
00009  *
00010  * This library is free software; you can redistribute it and/or
00011  * modify it under the terms of the GNU Lesser General Public
00012  * License as published by the Free Software Foundation; either
00013  * version 2.1 of the License, or (at your option) any later version.
00014  *
00015  * This library is distributed in the hope that it will be useful,
00016  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00018  * Lesser General Public License for more details.
00019  *
00020  * You should have received a copy of the GNU Lesser General Public
00021  * License along with this library; if not, write to the Free Software
00022  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00023  */
00024 
00025 //To get the REBECA_EXPORT macro
00026 #include <rebecca/exports.h>
00027 #include <rebecca/Exceptions.h>
00028 
00029 /* Disable Windows VC 7.x warning about 
00030  * it ignoring the throw specification
00031  */
00032 #ifdef _WIN32
00033 #    pragma warning ( push )
00034 #    pragma warning( disable : 4290 )
00035 #endif
00036 
00049 namespace rebecca
00050 {
00051 
00070 namespace impl
00071 {
00072 
00073 //Forward decleration
00074 class GraphBuilder;
00075 
00102 class REBECCA_EXPORT AimlFacade
00103 {
00104     public:
00105 
00119         AimlFacade() throw(Exception &);
00120 
00137         GraphBuilder &getGraphBuilder() throw();
00138     
00145         virtual ~AimlFacade();
00146 
00147     private:
00148 
00158         AimlFacade &operator=(const AimlFacade &aimlFacade);
00159 
00169         AimlFacade(const AimlFacade& aimlFacade);
00170 
00180         GraphBuilder *m_graphBuilder;
00181 };
00182 
00183 
00184 
00185 } //end namespace impl
00186 
00187 //expose AimlFacade to the rebecca namespace
00188 using rebecca::impl::AimlFacade;
00189 
00190 } //end namespace rebecca
00191 
00192 #ifdef _WIN32
00193 #    pragma warning ( pop )
00194 #endif
00195 
00196 
00197 #endif

Generated on Tue Feb 14 22:44:27 2006 for RebeccaAIML by  doxygen 1.4.5