X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fserver_dialog.h;h=b434b0e1a1e058a34f9e1e694c66c7173f7dd42a;hb=854f2e5bbb7ffb9758b823af87034033033f3cb8;hp=3f1fa1f73021fb32bbc3c20d7e312163116326e1;hpb=74a8d26a8907c6e00e29f054178a3425f44e38ed;p=dcpomatic.git diff --git a/src/wx/server_dialog.h b/src/wx/server_dialog.h index 3f1fa1f73..b434b0e1a 100644 --- a/src/wx/server_dialog.h +++ b/src/wx/server_dialog.h @@ -17,23 +17,16 @@ */ -#include -#include +#include "table_dialog.h" -class ServerDescription; - -class ServerDialog : public wxDialog +class ServerDialog : public TableDialog { public: - ServerDialog (wxWindow *, boost::shared_ptr); + ServerDialog (wxWindow *); - boost::shared_ptr server () const; + void set (std::string); + std::string get () const; private: - void host_changed (); - void threads_changed (); - - boost::shared_ptr _server; wxTextCtrl* _host; - wxSpinCtrl* _threads; };