diff options
Diffstat (limited to 'shell/inc/internal')
-rw-r--r-- | shell/inc/internal/contentreader.hxx | 1 | ||||
-rw-r--r-- | shell/inc/internal/i_xml_parser_event_handler.hxx | 1 | ||||
-rw-r--r-- | shell/inc/internal/types.hxx | 9 | ||||
-rw-r--r-- | shell/inc/internal/xml_parser.hxx | 5 |
4 files changed, 0 insertions, 16 deletions
diff --git a/shell/inc/internal/contentreader.hxx b/shell/inc/internal/contentreader.hxx index bb44910323..d08e58f78c 100644 --- a/shell/inc/internal/contentreader.hxx +++ b/shell/inc/internal/contentreader.hxx @@ -38,7 +38,6 @@ class CContentReader : public CBaseReader public: virtual ~CContentReader(); - //CContentReader( const std::string& DocumentName ); CContentReader( const std::string& DocumentName, LocaleSet_t const & DocumentLocale ); CContentReader( void* stream, LocaleSet_t const & DocumentLocale, zlib_filefunc_def* fa ); diff --git a/shell/inc/internal/i_xml_parser_event_handler.hxx b/shell/inc/internal/i_xml_parser_event_handler.hxx index a5d6d419c1..08539e02e9 100644 --- a/shell/inc/internal/i_xml_parser_event_handler.hxx +++ b/shell/inc/internal/i_xml_parser_event_handler.hxx @@ -44,7 +44,6 @@ typedef std::map<string_t, string_t> xml_tag_attribute_container_t; -//######################################### class i_xml_parser_event_handler { public: diff --git a/shell/inc/internal/types.hxx b/shell/inc/internal/types.hxx index c23fbd3647..4eb0c3a2ce 100644 --- a/shell/inc/internal/types.hxx +++ b/shell/inc/internal/types.hxx @@ -41,13 +41,10 @@ typedef std::vector<std::wstring> StringList_t; //+------------------------------------------------------------------------- -// // Declare: XmlTagAttributes_t, xml tag attribute struct // XmlTag_t, xml tag including content and attributes. // XmlTags_t, tags defined with tag name and xml tag. -// // Contents: Definitions of xml tag used in parser. -// //-------------------------------------------------------------------------- typedef std::wstring Name_t; typedef std::wstring Value_t; @@ -60,13 +57,10 @@ typedef std::map<Name_t, XmlTag_t> XmlTags_t; const XmlTag_t EMPTY_XML_TAG = std::make_pair(std::wstring(), XmlTagAttributes_t()); //+------------------------------------------------------------------------- -// // Declare: Language_t, language of the Locale pair // Country_t, country of the Local pair // LocaleSet_t, Local pair -// // Contents: Definitions of Chunk properties. -// //-------------------------------------------------------------------------- typedef ::std::wstring Language_t; typedef ::std::wstring Country_t; @@ -80,12 +74,9 @@ const LocaleSet_t EMPTY_LOCALE = ::std::make_pair(::std::wstring(), ::std::wstri const Chunk_t EMPTY_CHUNK = ::std::make_pair( EMPTY_LOCALE, ::std::wstring()); //+------------------------------------------------------------------------- -// // Declare: StyleName_t, style name of a style-locale pair. // StyleLocaleMap, the map of Styple-Locale pair. -// // Contents: Definitions of Style Names. -// //-------------------------------------------------------------------------- typedef ::std::wstring StyleName_t; typedef ::std::pair <StyleName_t, LocaleSet_t> StyleLocalePair_t; diff --git a/shell/inc/internal/xml_parser.hxx b/shell/inc/internal/xml_parser.hxx index d721631296..f4e5ffcf6d 100644 --- a/shell/inc/internal/xml_parser.hxx +++ b/shell/inc/internal/xml_parser.hxx @@ -66,13 +66,10 @@ class i_xml_parser_event_handler; class xml_parser { public: - //######################################################## xml_parser(const XML_Char* EncodingName = 0); - //######################################################## ~xml_parser(); - //######################################################## /** Parse a XML data stream @param pXmlData @@ -94,7 +91,6 @@ public: contains detailed information about the error. */ void parse(const char* XmlData, size_t Length, bool IsFinal = true); - //######################################################## /** Set a document handler @descr A document handler implements the interface i_xml_parser_event_handler. @@ -113,7 +109,6 @@ public: @postcond currently used document handler == pSaxDocumentHandler */ void set_document_handler(i_xml_parser_event_handler* event_handler); - //######################################################## /** Returns the currently used document handler or null if no document handler was set before. */ i_xml_parser_event_handler* get_document_handler() const; |