Bifrost SDK
Bifrost SDK documentation
RuntimeMessageCategory.h
Go to the documentation of this file.
1//-
2// =============================================================================
3// Copyright 2024 Autodesk, Inc. All rights reserved.
4//
5// Use of this software is subject to the terms of the Autodesk license
6// agreement provided at the time of installation or download, or which
7// otherwise accompanies this software in either electronic or hard copy form.
8// =============================================================================
9
10//+
11
14
15#ifndef AMINO_CORE_RUNTIME_MESSAGE_CATEGORY_H
16#define AMINO_CORE_RUNTIME_MESSAGE_CATEGORY_H
17
18//==============================================================================
19// NAMESPACE Amino
20//==============================================================================
21
22namespace Amino {
23
24//==============================================================================
25// ENUM RuntimeMessageCategory
26//==============================================================================
27
29enum class RuntimeMessageCategory : unsigned short {
30 kError = 1,
32 kWarning = 2,
34 kInfo = 3
35};
36
37} // namespace Amino
38
39#endif // AMINO_CORE_RUNTIME_MESSAGE_CATEGORY_H
Definition: HostData.h:33
RuntimeMessageCategory
Category of the message logged at runtime (when executing a graph).
@ kInfo
The message provides information to the user.