kopia lustrzana https://github.com/jameshball/osci-render
17 wiersze
343 B
C
17 wiersze
343 B
C
|
/*
|
||
|
* IXProgressCallback.h
|
||
|
* Author: Benjamin Sergeant
|
||
|
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <functional>
|
||
|
#include <string>
|
||
|
|
||
|
namespace ix
|
||
|
{
|
||
|
using OnProgressCallback = std::function<bool(int current, int total)>;
|
||
|
using OnChunkCallback = std::function<void(const std::string&)>;
|
||
|
}
|