]> git.lyx.org Git - lyx.git/blobdiff - src/ServerSocket.h
Hack to display section symbol
[lyx.git] / src / ServerSocket.h
index 420089984c6d5373678369e136267fbae17527de..c66658042ff38ca4d4da9dfda9d67cb9489567c0 100644 (file)
 #define LYXSERVERSOCKET_H
 
 #include "support/FileName.h"
-#include "support/socktools.h"
-
-#include <boost/shared_ptr.hpp>
 
 #include <string>
 #include <map>
+#include <memory>
 
 
 namespace lyx {
@@ -61,7 +59,7 @@ private:
                MAX_CLIENTS = 10
        };
        /// All connections
-       std::map<int, boost::shared_ptr<LyXDataSocket> > clients;
+       std::map<int, std::shared_ptr<LyXDataSocket>> clients;
 };