X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdesigner%2Fsvgexporter.h;h=e498d3ddd38048b845e436eeaf74225bfea70faf;hb=02453a447bad0ecc2a71e00b9578c9afaee0eadb;hp=6e93ca4de5f881a639b8a716a420e027a2adfd45;hpb=6ba6af3637c299ab00828c49de9151429488cc17;p=r2c2.git diff --git a/source/designer/svgexporter.h b/source/designer/svgexporter.h index 6e93ca4..e498d3d 100644 --- a/source/designer/svgexporter.h +++ b/source/designer/svgexporter.h @@ -1,29 +1,22 @@ -/* $Id$ - -This file is part of the MSP Märklin suite -Copyright © 2010 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - #ifndef SVGEXPORTER_H_ #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