ddnet/src/engine/shared/fifoconsole.h

19 lines
295 B
C
Raw Normal View History

2013-07-29 19:03:59 +00:00
#ifndef ENGINE_FIFOCONSOLE_H
#define ENGINE_FIFOCONSOLE_H
#include <engine/console.h>
2013-08-06 04:44:53 +00:00
#if defined(CONF_FAMILY_UNIX)
2014-08-29 14:52:08 +00:00
2013-07-29 19:03:59 +00:00
class FifoConsole
{
static void ListenFifoThread(void *pUser);
2013-08-03 15:22:50 +00:00
void *m_pFifoThread;
2013-07-29 19:03:59 +00:00
public:
FifoConsole(IConsole *pConsole);
};
2013-08-06 04:44:53 +00:00
#endif
2013-07-29 19:03:59 +00:00
#endif // FILE_ENGINE_FIFOCONSOLE_H