IXWebSocket/ixwebsocket/IXSelectInterruptFactory.h

16 lines
271 B
C
Raw Normal View History

2019-03-15 02:37:38 +01:00
/*
* IXSelectInterruptFactory.h
* Author: Benjamin Sergeant
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
*/
#pragma once
#include <memory>
namespace ix
{
class SelectInterrupt;
std::shared_ptr<SelectInterrupt> createSelectInterrupt();
}