Add UTC-3:30 timezone to cinema (#831).
[dcpomatic.git] / src / wx / servers_list_dialog.h
index 63f1cd6a9b87c2330af12d04d26385a45b16c7e8..08d9c739c29b8961b61579b72a3f6270f4bdb3fe 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 */
 
+#include "lib/encode_server.h"
 #include <wx/wx.h>
 #include <wx/listctrl.h>
+#include <boost/signals2.hpp>
 
 class ServersListDialog : public wxDialog
 {
@@ -26,8 +28,9 @@ public:
        ServersListDialog (wxWindow *);
 
 private:
-       void server_found (ServerDescription);
+       void servers_list_changed ();
 
-       std::list<ServerDescription> _servers;
        wxListCtrl* _list;
+
+       boost::signals2::scoped_connection _server_finder_connection;
 };