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
6
namespace
EmberCore
{
7
11
class
IParseProgressCallback
{
12
public
:
13
virtual
~IParseProgressCallback
() =
default
;
14
22
virtual
bool
OnProgress
(
const
String
&message,
int
current,
int
total) = 0;
23
};
24
25
}
// namespace EmberCore
Types.h
EmberCore::IParseProgressCallback
Callback interface for reporting parsing progress.
Definition
IParseProgressCallback.h:11
EmberCore::IParseProgressCallback::OnProgress
virtual bool OnProgress(const String &message, int current, int total)=0
Called to report progress during parsing.
EmberCore::IParseProgressCallback::~IParseProgressCallback
virtual ~IParseProgressCallback()=default
EmberCore
Main types header for EmberCore.
Definition
DefaultTreeFactory.h:9
EmberCore::String
std::string String
Framework-agnostic string type.
Definition
String.h:14
EmberCore
include
Parsers
IParseProgressCallback.h
Generated by
Release_1_14_0