Files
o3de/Code/Sandbox/Editor/ErrorRecorder.h
T
2021-06-23 10:55:22 -07:00

26 lines
593 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
// Description : Class that collects error reports to present them later.
#ifndef CRYINCLUDE_EDITOR_CORE_ERRORRECORDER_H
#define CRYINCLUDE_EDITOR_CORE_ERRORRECORDER_H
#pragma once
//////////////////////////////////////////////////////////////////////////
//! Automatic class to record and display error.
class EDITOR_CORE_API CErrorsRecorder
{
public:
CErrorsRecorder(bool showErrors = true);
~CErrorsRecorder();
};
#endif // CRYINCLUDE_EDITOR_ERRORREPORT_H