1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
12 namespace writerfilter::rtftok
16 /// Skips a destination after a not parsed control word if it was prefixed with \*
17 class RTFSkipDestination final
20 explicit RTFSkipDestination(RTFListener
& rImport
);
21 ~RTFSkipDestination();
22 void setParsed(bool bParsed
);
23 void setReset(bool bReset
);
26 RTFListener
& m_rImport
;
28 /// If false, the destructor is a noop, required by the \* symbol itself.
31 } // namespace writerfilter::rtftok
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */