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