3 This file is part of R²C²
4 Copyright © 2009-2010 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
11 #include <gtkmm/main.h>
12 #include <gtkmm/window.h>
13 #include <gtkmm/box.h>
14 #include <msp/core/application.h>
15 #include "network/client.h"
19 class Remote: public Msp::Application
22 Msp::IO::EventDispatcher event_disp;
23 R2C2::Catalogue catalogue;
28 std::vector<TrainPanel *> train_panels;
30 static Msp::Application::RegApp<Remote> reg;
33 Remote(int argc, char **argv);
35 const R2C2::Catalogue &get_catalogue() const { return catalogue; }
39 void train_added(R2C2::NetTrain &);