]> git.tdb.fi Git - r2c2.git/blobdiff - source/designer/svgexporter.h
Strip Id tags and copyright notices from files
[r2c2.git] / source / designer / svgexporter.h
index 6e93ca4de5f881a639b8a716a420e027a2adfd45..e498d3ddd38048b845e436eeaf74225bfea70faf 100644 (file)
@@ -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 <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