bump product version to 6.3.0.0.beta1
[LibreOffice.git] / svgio / inc / svgvisitor.hxx
blob46adbfb229246600c82c282dd51b2fb369bae6b8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
9 */
11 #ifndef INCLUDED_SVGIO_INC_SVGVISITOR_HXX
12 #define INCLUDED_SVGIO_INC_SVGVISITOR_HXX
14 #include <basegfx/DrawCommands.hxx>
15 #include <memory>
16 #include "svgnode.hxx"
18 namespace svgio
20 namespace svgreader
22 class SvgDrawVisitor : public Visitor
24 private:
25 std::shared_ptr<gfx::DrawRoot> mpDrawRoot;
26 std::shared_ptr<gfx::DrawBase> mpCurrent;
28 public:
29 SvgDrawVisitor();
31 void visit(svgio::svgreader::SvgNode const& rNode) override;
32 void goToChildren(svgio::svgreader::SvgNode const& rNode);
34 std::shared_ptr<gfx::DrawRoot> const& getDrawRoot() { return mpDrawRoot; }
39 #endif // INCLUDED_SVGIO_INC_SVGVISITOR_HXX
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */