X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FServerSocket.h;h=2b2ddd11d27e70c93c11937acbf30881beee900f;hb=0b17cb113523fb23c43064709e9b6606fe80914c;hp=da98ebe9163c1ac8258938cae305a43867073109;hpb=978f65391e03cf36710527145c6c99d10474a1cd;p=lyx.git diff --git a/src/ServerSocket.h b/src/ServerSocket.h index da98ebe916..2b2ddd11d2 100644 --- a/src/ServerSocket.h +++ b/src/ServerSocket.h @@ -4,9 +4,9 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * \author Jean-Marc Lasgouttes - * \author João Luis M. Assirati + * \author João Luis M. Assirati * * Full author contact details are available in file CREDITS. */ @@ -17,7 +17,7 @@ #include "support/FileName.h" #include "support/socktools.h" -#include +#include "support/shared_ptr.h" #include #include @@ -26,7 +26,6 @@ namespace lyx { class LyXDataSocket; -class LyXFunc; /** Sockets can be in two states: listening and connected. @@ -41,7 +40,7 @@ class LyXFunc; class ServerSocket { public: /// - ServerSocket(LyXFunc *, support::FileName const &); + ServerSocket(support::FileName const &); /// ~ServerSocket(); /// Address of the local socket @@ -53,8 +52,6 @@ public: private: /// void writeln(std::string const &); - /// - LyXFunc * func; /// File descriptor for the server socket int fd_; /// Stores the socket filename @@ -64,7 +61,7 @@ private: MAX_CLIENTS = 10 }; /// All connections - std::map > clients; + std::map > clients; };