26 lines
580 B
C++
26 lines
580 B
C++
/*
|
|
* IXSelectInterruptFactory.cpp
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
|
|
#include "IXSelectInterruptFactory.h"
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
# include <ixwebsocket/IXSelectInterruptPipe.h>
|
|
#else
|
|
# include <ixwebsocket/IXSelectInterrupt.h>
|
|
#endif
|
|
|
|
namespace ix
|
|
{
|
|
std::shared_ptr<SelectInterrupt> createSelectInterrupt()
|
|
{
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
return std::make_shared<SelectInterruptPipe>();
|
|
#else
|
|
return std::make_shared<SelectInterrupt>();
|
|
#endif
|
|
}
|
|
}
|