diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-05-02 20:25:51 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-05-02 20:26:23 +0200 |
commit | 93848e11ec7d28ddef35ee165e12d847f2fafcea (patch) | |
tree | c2728e1a902b21852469c97d5c8c1111f6b01154 /writerperfect/source/common/InternalHandler.hxx | |
parent | 7de37ac7d633ba12cd90a38b2255130ef8e88b1a (diff) |
Splitting writerperfect into serializer and libodfgen
Change-Id: I69f12fb097dbc977e63463b6b764a3553bcf9271
Diffstat (limited to 'writerperfect/source/common/InternalHandler.hxx')
-rw-r--r-- | writerperfect/source/common/InternalHandler.hxx | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/writerperfect/source/common/InternalHandler.hxx b/writerperfect/source/common/InternalHandler.hxx deleted file mode 100644 index a07e83a977d9..000000000000 --- a/writerperfect/source/common/InternalHandler.hxx +++ /dev/null @@ -1,38 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -/* "This product is not manufactured, approved, or supported by - * Corel Corporation or Corel Corporation Limited." - */ - -#ifndef _INTERNALHANDLER_H -#define _INTERNALHANDLER_H -#include <libwpd/libwpd.h> -#include <libwpd/WPXProperty.h> -#include <libwpd/WPXString.h> -#include "DocumentElement.hxx" -#include "OdfDocumentHandler.hxx" - -class InternalHandler : public OdfDocumentHandler -{ -public: - InternalHandler(std::vector<DocumentElement *> *elements); - ~InternalHandler() {}; - - void startDocument() {}; - void endDocument() {}; - void startElement(const char *psName, const WPXPropertyList &xPropList); - void endElement(const char *psName); - void characters(const WPXString &sCharacters); -private: - InternalHandler(const InternalHandler &); - InternalHandler &operator=(const InternalHandler &); - std::vector<DocumentElement *> *mpElements; -}; -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |