nss: upgrade to release 3.73
[LibreOffice.git] / svgio / inc / svgvisitor.hxx
blobc58cbfb35249d7e4a014f71c9d912eee951e5aa0
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::svgreader
20 class SvgDrawVisitor final : public Visitor
22 private:
23 std::shared_ptr<gfx::DrawRoot> mpDrawRoot;
24 std::shared_ptr<gfx::DrawBase> mpCurrent;
26 public:
27 SvgDrawVisitor();
29 void visit(svgio::svgreader::SvgNode const& rNode) override;
30 void goToChildren(svgio::svgreader::SvgNode const& rNode);
32 std::shared_ptr<gfx::DrawRoot> const& getDrawRoot() const { return mpDrawRoot; }
36 #endif // INCLUDED_SVGIO_INC_SVGVISITOR_HXX
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */