2003-10-13 12:25:11 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file socktools.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Jo<EFBFBD>o Luis M. Assirati
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef SOCKTOOLS_H
|
|
|
|
|
#define SOCKTOOLS_H
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace support {
|
2007-04-06 17:38:11 +00:00
|
|
|
|
|
|
|
|
|
class FileName;
|
|
|
|
|
|
2003-10-13 12:25:11 +00:00
|
|
|
|
namespace socktools {
|
|
|
|
|
|
2007-04-06 17:38:11 +00:00
|
|
|
|
int listen(FileName const &, int);
|
2003-10-13 12:25:11 +00:00
|
|
|
|
int accept(int);
|
|
|
|
|
|
|
|
|
|
} // namespace socktools
|
|
|
|
|
} // namespace support
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
|
|
#endif // NOT SOCKTOOLS_H
|