]> git.tdb.fi Git - r2c2.git/blobdiff - source/designer/svgexporter.h
Rename the project to R²C²
[r2c2.git] / source / designer / svgexporter.h
index 6e93ca4de5f881a639b8a716a420e027a2adfd45..38d77a9a4f162ef4aa519de019824c5be5a01362 100644 (file)
@@ -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 <libxml++/libxml++.h>
-#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