]> git.lyx.org Git - lyx.git/blob - src/support/socktools.h
Add forgotten zlib includes
[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 namespace lyx {
16 namespace support {
17
18 class FileName;
19
20 namespace socktools {
21
22 int listen(FileName const &, int);
23 int accept(int);
24
25 } // namespace socktools
26 } // namespace support
27 } // namespace lyx
28
29 #endif // NOT SOCKTOOLS_H