00001 // xmleq.hh: this file is part of the Vaucanson project. 00002 // 00003 // Vaucanson, a generic library for finite state machines. 00004 // 00005 // Copyright (C) 2004, 2005, 2006 The Vaucanson Group. 00006 // 00007 // This program is free software; you can redistribute it and/or 00008 // modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 00010 // of the License, or (at your option) any later version. 00011 // 00012 // The complete GNU General Public Licence Notice can be found as the 00013 // `COPYING' file in the root directory. 00014 // 00015 // The Vaucanson Group consists of people listed in the `AUTHORS' file. 00016 // 00017 00018 #ifndef VCSN_XML_XMLEQ_HH 00019 # define VCSN_XML_XMLEQ_HH 00020 00031 # include <string> 00032 00033 # include <xercesc/util/XMLUniDefs.hpp> 00034 # include <xercesc/util/XMLString.hpp> 00035 00036 namespace vcsn 00037 { 00038 namespace xml 00039 { 00041 class XMLEq 00042 { 00043 public: 00044 XMLCh* fsmxml; 00045 XMLCh* automaton; 00046 XMLCh* drawing; 00047 XMLCh* geometry; 00048 XMLCh* type; 00049 XMLCh* monoid; 00050 XMLCh* generator; 00051 XMLCh* semiring; 00052 XMLCh* nsemiring; 00053 XMLCh* content; 00054 XMLCh* states; 00055 XMLCh* state; 00056 XMLCh* transitions; 00057 XMLCh* transition; 00058 XMLCh* initial; 00059 XMLCh* final; 00060 00061 XMLCh* label; 00062 XMLCh* sum; 00063 XMLCh* product; 00064 XMLCh* star; 00065 XMLCh* word; 00066 XMLCh* zero; 00067 XMLCh* identity; 00068 00069 XMLEq (); 00070 ~XMLEq (); 00071 }; 00072 } // End of namespace xml. 00073 00074 } // End of namespace vcsn. 00075 00076 # if !defined VCSN_USE_INTERFACE_ONLY || defined VCSN_USE_LIB 00077 # include <vaucanson/xml/xmleq.hxx> 00078 # endif // ! VCSN_USE_INTERFACE_ONLY 00079 00080 #endif // ! VCSN_XML_XMLEQ_HH