00001 /* 00002 * FML.h 00003 * semaine 00004 * 00005 * Created by Marc Schröder on 06.11.08. 00006 * Copyright 2008 DFKI GmbH. All rights reserved. 00007 * 00008 */ 00009 00010 #ifndef SEMAINE_DATATYPES_XML_FML_H 00011 #define SEMAINE_DATATYPES_XML_FML_H 00012 00013 #include <semaine/config.h> 00014 00015 namespace semaine { 00016 namespace datatypes { 00017 namespace xml { 00018 00019 class FML 00020 { 00021 public: 00022 static const std::string version; 00023 static const std::string namespaceURI; 00024 00025 // Elements 00026 static const std::string E_FML; 00027 static const std::string E_ROOT_TAGNAME; 00028 static const std::string E_PERFORMATIVE; 00029 static const std::string E_THEME; 00030 static const std::string E_RHEME; 00031 static const std::string E_WORLD; 00032 static const std::string E_EMOTION; 00033 00034 // Attributes 00035 static const std::string A_ID; 00036 static const std::string A_START; 00037 static const std::string A_END; 00038 static const std::string A_TYPE; 00039 }; 00040 00041 } // namespace xml 00042 } // namespace datatypes 00043 } // namespace semaine 00044 00045 #endif 00046