summaryrefslogtreecommitdiff
path: root/sw/source/writerfilter/rtftok/rtfskipdestination.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/writerfilter/rtftok/rtfskipdestination.hxx')
-rw-r--r--sw/source/writerfilter/rtftok/rtfskipdestination.hxx33
1 files changed, 33 insertions, 0 deletions
diff --git a/sw/source/writerfilter/rtftok/rtfskipdestination.hxx b/sw/source/writerfilter/rtftok/rtfskipdestination.hxx
new file mode 100644
index 000000000000..4a894373f1e4
--- /dev/null
+++ b/sw/source/writerfilter/rtftok/rtfskipdestination.hxx
@@ -0,0 +1,33 @@
+/* -*- 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/.
+ */
+
+#pragma once
+
+namespace writerfilter::rtftok
+{
+class RTFListener;
+
+/// Skips a destination after a not parsed control word if it was prefixed with \*
+class RTFSkipDestination final
+{
+public:
+ explicit RTFSkipDestination(RTFListener& rImport);
+ ~RTFSkipDestination();
+ void setParsed(bool bParsed);
+ void setReset(bool bReset);
+
+private:
+ RTFListener& m_rImport;
+ bool m_bParsed;
+ /// If false, the destructor is a noop, required by the \* symbol itself.
+ bool m_bReset;
+};
+} // namespace writerfilter::rtftok
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */