X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdesigner%2Ftrackwrap.h;fp=source%2Fdesigner%2Ftrackwrap.h;h=2f21125c6b703b2ba05b97b834ec5637c7570565;hb=1ff06c5bc46a677fa389ef86c6b26664368f1653;hp=09bacda3e7f8be18ba9dd43ffa802b93b2c89255;hpb=9b05c573a38639827697fe393d55b7c76f5bde45;p=r2c2.git diff --git a/source/designer/trackwrap.h b/source/designer/trackwrap.h index 09bacda..2f21125 100644 --- a/source/designer/trackwrap.h +++ b/source/designer/trackwrap.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 */ @@ -10,7 +10,7 @@ Distributed under the GPL #include #include -#include "libmarklin/track.h" +#include "libr2c2/track.h" class Designer; class Selection; @@ -20,13 +20,13 @@ class TrackWrap: public Msp::GL::Renderable private: struct Wrap { - Marklin::Track *track; + R2C2::Track *track; Msp::GL::Mesh *mesh; }; Designer &designer; Selection &selection; - std::map meshes; + std::map meshes; std::list wraps; public: @@ -36,7 +36,7 @@ public: private: void selection_changed(); - Msp::GL::Mesh &get_mesh(const Marklin::TrackType &); + Msp::GL::Mesh &get_mesh(const R2C2::TrackType &); }; #endif