IXWebSocket/ixwebsocket/IXSelectInterruptFactory.h

17 lines
338 B
C
Raw Permalink Normal View History

2019-03-14 18:37:38 -07: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();
2019-05-30 08:46:50 -07:00
} // namespace ix