X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fdesigner%2Fsvgexporter.h;h=38d77a9a4f162ef4aa519de019824c5be5a01362;hb=1ff06c5bc46a677fa389ef86c6b26664368f1653;hp=6e93ca4de5f881a639b8a716a420e027a2adfd45;hpb=9b05c573a38639827697fe393d55b7c76f5bde45;p=r2c2.git diff --git a/source/designer/svgexporter.h b/source/designer/svgexporter.h index 6e93ca4..38d77a9 100644 --- a/source/designer/svgexporter.h +++ b/source/designer/svgexporter.h @@ -1,6 +1,6 @@ /* $Id$ -This file is part of the MSP Märklin suite +This file is part of R²C² Copyright © 2010 Mikkosoft Productions, Mikko Rasa Distributed under the GPL */ @@ -9,21 +9,21 @@ Distributed under the GPL #define SVGEXPORTER_H_ #include -#include "libmarklin/layout.h" +#include "libr2c2/layout.h" class SvgExporter { private: - const Marklin::Layout &layout; + const R2C2::Layout &layout; float gauge; float rail_width; public: - SvgExporter(const Marklin::Layout &); + SvgExporter(const R2C2::Layout &); void save(const std::string &); private: - void save_track(const Marklin::Track &, xmlpp::Element &); + void save_track(const R2C2::Track &, xmlpp::Element &); }; #endif