16 lines
240 B
C
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()>;
|
||
|
}
|
||
|
|