// -*- C++ -*- /** * \file io_callback.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author unknown * \author John Levon * \author Joćo Luis M. Assirati * * Full author contact details are available in file CREDITS. */ #ifndef SOCKET_CALLBACK_H #define SOCKET_CALLBACK_H #include #include #include #include /** * socket_callback - a simple wrapper for asynchronous socket notification * * This is used by the lyxsocket to notice the socket is ready to be * connected/read. * * FIXME: this code apparently will not work on Windows. */ class socket_callback : public QObject { Q_OBJECT public: /// connect a connection notification from the LyXServerSocket socket_callback(int fd, boost::function func); public Q_SLOTS: void data_received(); private: /// our notifier boost::scoped_ptr sn_; /// The callback function boost::function func_; }; #endif // SOCKET_CALLBACK_H