3 This file is part of R²C²
4 Copyright © 2009-2011 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"
20 class Remote: public Msp::Application
23 Msp::IO::EventDispatcher event_disp;
24 R2C2::Catalogue catalogue;
29 MainPanel *main_panel;
30 std::vector<TrainPanel *> train_panels;
32 static Msp::Application::RegApp<Remote> reg;
35 Remote(int argc, char **argv);
37 const R2C2::Catalogue &get_catalogue() const { return catalogue; }
41 void train_added(R2C2::NetTrain &);