Files
itgmania212121/extern/IXWebSocket-11.3.2/ixwebsocket/IXSelectInterruptFactory.h
T

17 lines
338 B
C++
Raw Normal View History

2021-09-11 23:21:34 +02:00
/*
* IXSelectInterruptFactory.h
* Author: Benjamin Sergeant
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
*/
#pragma once
#include <memory>
namespace ix
{
class SelectInterrupt;
using SelectInterruptPtr = std::unique_ptr<SelectInterrupt>;
SelectInterruptPtr createSelectInterrupt();
} // namespace ix