IXWebSocket/ixwebsocket/IXCancellationRequest.h
2018-12-14 16:28:17 -08:00

16 lines
240 B
C++

/*
* 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()>;
}