summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/util.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-12-07 17:53:41 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-12-07 18:20:24 +0100
commit365116a45dd93372a382521747c6eca882306ef3 (patch)
treeedd9e7e660f0ada476c025aad909bf86fc203239 /writerfilter/source/dmapper/util.hxx
parentec1b1af8af7ead149f96c09e16402e66e0973372 (diff)
writerfilter: util.hxx is used only inside dmapper
Change-Id: Ia3736c32c460b466649f10f4790c30d0d25f8c5e
Diffstat (limited to 'writerfilter/source/dmapper/util.hxx')
-rw-r--r--writerfilter/source/dmapper/util.hxx36
1 files changed, 36 insertions, 0 deletions
diff --git a/writerfilter/source/dmapper/util.hxx b/writerfilter/source/dmapper/util.hxx
new file mode 100644
index 000000000000..29ef0de5cb71
--- /dev/null
+++ b/writerfilter/source/dmapper/util.hxx
@@ -0,0 +1,36 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * 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 file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#ifndef INCLUDED_WRITERFILTER_SOURCE_DMAPPER_UTIL_HXX
+#define INCLUDED_WRITERFILTER_SOURCE_DMAPPER_UTIL_HXX
+
+#include <com/sun/star/text/XTextRange.hpp>
+#include <string>
+
+namespace writerfilter
+{
+namespace dmapper
+{
+ std::string XTextRangeToString(css::uno::Reference< css::text::XTextRange > textRange);
+}
+}
+
+#endif // INCLUDED_WRITERFILTER_SOURCE_DMAPPER_UTIL_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */