Very basics of colour conversion configuration.
[dcpomatic.git] / src / wx / server_dialog.h
index f42236771efbb6e3a7f7c5d34c0865b2f6f4ac12..3f1fa1f73021fb32bbc3c20d7e312163116326e1 100644 (file)
@@ -25,15 +25,15 @@ class ServerDescription;
 class ServerDialog : public wxDialog
 {
 public:
-       ServerDialog (wxWindow *, ServerDescription *);
+       ServerDialog (wxWindow *, boost::shared_ptr<ServerDescription>);
 
-       ServerDescription* server () const;
+       boost::shared_ptr<ServerDescription> server () const;
 
 private:
        void host_changed ();
        void threads_changed ();
 
-       ServerDescription* _server;
+       boost::shared_ptr<ServerDescription> _server;
        wxTextCtrl* _host;
        wxSpinCtrl* _threads;
 };