IXWebSocket/ixwebsocket/IXCancellationRequest.h

16 lines
240 B
C
Raw Normal View History

2018-12-15 01:28:11 +01:00
/*
* IXCancellationRequest.h
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
*/
#pragma once
#include <functional>
namespace ix
{
using CancellationRequest = std::function<bool()>;
}