Ember
Loading...
Searching...
No Matches
IParseProgressCallback.h
Go to the documentation of this file.
1#pragma once
2
3#include "Types/Types.h"
4#include <cstdint>
5
6namespace EmberCore {
7
12 public:
13 virtual ~IParseProgressCallback() = default;
14
22 virtual bool OnProgress(const String &message, int current, int total) = 0;
23};
24
25} // namespace EmberCore
Callback interface for reporting parsing progress.
virtual bool OnProgress(const String &message, int current, int total)=0
Called to report progress during parsing.
virtual ~IParseProgressCallback()=default
Main types header for EmberCore.
std::string String
Framework-agnostic string type.
Definition String.h:14