]> git.tdb.fi Git - r2c2.git/blobdiff - source/network/train.h
Full vehicle unification
[r2c2.git] / source / network / train.h
index 74c6ccb6cae38d28d3216f0ed6d6dd53cc5dd7b7..3de4f7d38303bc067f55f4a83a1e070f01ccc07a 100644 (file)
@@ -9,7 +9,7 @@ Distributed under the GPL
 #define MARKLINNET_TRAIN_H_
 
 #include <sigc++/signal.h>
-#include "libmarklin/locotype.h"
+#include "libmarklin/vehicletype.h"
 #include "packets.h"
 
 namespace Marklin {
@@ -27,7 +27,7 @@ public:
 
 private:
        Client &client;
-       const LocoType &loco_type;
+       const VehicleType &loco_type;
        unsigned address;
        std::string name;
        std::map<std::string, float> controls;
@@ -38,7 +38,7 @@ private:
 public:
        NetTrain(Client &, const TrainInfoPacket &);
 
-       const LocoType &get_loco_type() const { return loco_type; }
+       const VehicleType &get_loco_type() const { return loco_type; }
        unsigned get_address() const { return address; }
        const std::string &get_name() const { return name; }
        void set_control(const std::string &, float);