00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef SEMAINE_DATATYPES_XML_SSML_H
00011 #define SEMAINE_DATATYPES_XML_SSML_H
00012
00013 #include <semaine/config.h>
00014
00015 namespace semaine {
00016 namespace datatypes {
00017 namespace xml {
00018
00019 class SSML
00020 {
00021 public:
00022 static const std::string version;
00023 static const std::string namespaceURI;
00024
00025
00026 static const std::string E_SSML;
00027 static const std::string E_ROOT_TAGNAME;
00028 static const std::string E_MARK;
00029
00030
00031 static const std::string A_NAME;
00032 };
00033
00034 }
00035 }
00036 }
00037
00038 #endif
00039