#ifndef PROPERTYNAMES_H #define PROPERTYNAMES_H /* * $Id$ */ #include #include #include namespace SAX { template > 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