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/.
11 #ifndef INCLUDED_SVGIO_INC_SVGVISITOR_HXX
12 #define INCLUDED_SVGIO_INC_SVGVISITOR_HXX
14 #include <basegfx/DrawCommands.hxx>
16 #include "svgnode.hxx"
22 class SvgDrawVisitor
: public Visitor
25 std::shared_ptr
<gfx::DrawRoot
> mpDrawRoot
;
26 std::shared_ptr
<gfx::DrawBase
> mpCurrent
;
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: */