arabica/SAX/helpers/PropertyNames.h

34 lines
775 B
C
Raw Normal View History

2003-09-11 12:26:53 +02:00
#ifndef ARABICA_PROPERTY_NAMES_H
#define ARABICA_PROPERTY_NAMES_H
2002-06-21 13:16:28 +02:00
/*
* $Id$
*/
2003-09-09 13:14:48 +02:00
#include <SAX/ArabicaConfig.h>
#include <SAX/XMLReader.h>
2002-06-21 13:16:28 +02:00
#include <SAX/helpers/StringAdaptor.h>
namespace SAX
{
template<class string_type, class string_adaptor_type = default_string_adaptor<string_type> >
struct PropertyNames
{
typedef string_type stringT;
typedef string_adaptor_type string_adaptorT;
const stringT lexicalHandler;
const stringT declHandler;
PropertyNames() :
lexicalHandler(string_adaptorT().makeStringT("http://xml.org/sax/handlers/LexicalHandler")),
declHandler(string_adaptorT().makeStringT("http://xml.org/sax/handlers/DeclHandler"))
{
} // PropertyNames
}; // struct PropertyNames
} // namespace SAX
#endif
// end of file