summaryrefslogtreecommitdiff
path: root/oox/inc/oox/core/xmlfilterbase.hxx
diff options
context:
space:
mode:
authorKatarina Machalkova <kmachalkova@suse.cz>2010-10-20 18:31:49 +0200
committerKatarina Machalkova <kmachalkova@suse.cz>2010-10-21 09:37:15 +0200
commitf4fa39e90ef0bd28f883226e2954482b31a741e5 (patch)
tree6a057b4dd2902193fa183ddfeaa65b27d1ef6eb6 /oox/inc/oox/core/xmlfilterbase.hxx
parenta3e61bf09120a70a6f209a0b61df9df68d19ba2b (diff)
Undoing pptx filter as a separate lib ( + related changes)
Shared ppt + pptx filter will be merged from cws later
Diffstat (limited to 'oox/inc/oox/core/xmlfilterbase.hxx')
-rw-r--r--oox/inc/oox/core/xmlfilterbase.hxx29
1 files changed, 1 insertions, 28 deletions
diff --git a/oox/inc/oox/core/xmlfilterbase.hxx b/oox/inc/oox/core/xmlfilterbase.hxx
index a6e260fcddee..4cfccca02d70 100644
--- a/oox/inc/oox/core/xmlfilterbase.hxx
+++ b/oox/inc/oox/core/xmlfilterbase.hxx
@@ -42,10 +42,8 @@
namespace com { namespace sun { namespace star {
namespace container { class XNameContainer; }
namespace document { class XDocumentProperties; }
- namespace xml { namespace dom { class XDocument; } }
namespace xml { namespace sax { class XLocator; } }
namespace xml { namespace sax { class XFastDocumentHandler; } }
- namespace xml { namespace sax { class XFastSAXSerializable; } }
} } }
namespace oox { namespace drawingml { class Theme; } }
@@ -91,7 +89,7 @@ public:
/** Has to be implemented by each filter, returns a filter-specific chart
converter object, that should be global per imported document. */
- virtual ::oox::drawingml::chart::ChartConverter* getChartConverter() = 0;
+ virtual ::oox::drawingml::chart::ChartConverter& getChartConverter() = 0;
/** Has to be implemented by each filter to return the table style list. */
virtual const ::oox::drawingml::table::TableStyleListPtr getTableStyles() = 0;
@@ -109,31 +107,6 @@ public:
*/
bool importFragment( const ::rtl::Reference< FragmentHandler >& rxHandler );
- /** Imports a fragment into an xml::dom::XDocument.
-
- @param rFragmentPath path to fragment
-
- @return a non-empty reference to the XDocument, if the
- fragment could be imported.
- */
- ::com::sun::star::uno::Reference<
- ::com::sun::star::xml::dom::XDocument> importFragment( const ::rtl::OUString& rFragmentPath );
-
- /** Imports a fragment from an xml::dom::XDocument using the
- passed fragment handler
-
- @param rxHandler fragment handler; path to fragment is
- ignored, input source is the rxSerializer
-
- @param rxSerializer usually retrieved from a
- xml::dom::XDocument, will get serialized into rxHandler
-
- @return true, if the fragment could be imported.
- */
- bool importFragment( const ::rtl::Reference< FragmentHandler >& rxHandler,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::xml::sax::XFastSAXSerializable >& rxSerializer );
-
/** Imports the relations fragment associated with the specified fragment.
@return The relations collection of the specified fragment.