]> git.lyx.org Git - lyx.git/blob - src/support/socktools.h
remove unused stuff
[lyx.git] / src / support / socktools.h
1 // -*- C++ -*-
2 /**
3  * \file socktools.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author João Luis M. Assirati
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef SOCKTOOLS_H
13 #define SOCKTOOLS_H
14
15 #include <string>
16
17 namespace lyx {
18 namespace support {
19 namespace socktools {
20
21 int listen(std::string const &, int);
22 int accept(int);
23
24 } // namespace socktools
25 } // namespace support
26 } // namespace lyx
27
28 #endif // NOT SOCKTOOLS_H