X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdesigner%2Fsvgexporter.h;h=38d77a9a4f162ef4aa519de019824c5be5a01362;hb=7e27b311e33beda1746eb63e0945633f262427f6;hp=6e93ca4de5f881a639b8a716a420e027a2adfd45;hpb=6ba6af3637c299ab00828c49de9151429488cc17;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