anthem/include/anthem/output/Priority.h

29 lines
507 B
C++

#ifndef __ANTHEM__OUTPUT__PRIORITY_H
#define __ANTHEM__OUTPUT__PRIORITY_H
namespace anthem
{
namespace output
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Priority
//
////////////////////////////////////////////////////////////////////////////////////////////////////
enum class Priority
{
Debug,
Note,
Warning,
Error
};
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}
#endif