Try to fix build.
[dcpomatic.git] / src / lib / dcpomatic_socket.h
index b9859f600e40c16a76bbaa431a8ad4f57d655926..82ca5ff694bac96d0605553e36ecf89d9c3597ba 100644 (file)
@@ -30,7 +30,6 @@ class Socket : public boost::noncopyable
 {
 public:
        Socket (int timeout = 30);
-       ~Socket ();
 
        /** @return Our underlying socket */
        boost::asio::ip::tcp::socket& socket () {
@@ -38,7 +37,6 @@ public:
        }
 
        void connect (boost::asio::ip::tcp::endpoint);
-       void accept (int);
 
        void write (uint32_t n);
        void write (uint8_t const * data, int size);
@@ -54,6 +52,5 @@ private:
        boost::asio::io_service _io_service;
        boost::asio::deadline_timer _deadline;
        boost::asio::ip::tcp::socket _socket;
-       boost::asio::ip::tcp::acceptor* _acceptor;
        int _timeout;
 };