Defs.cpp
Go to the documentation of this file.
1 #include "Defs.hpp"
2 
3 namespace iv
4 {
5 namespace Defs
6 {
7 
8 namespace Log
9 {
10  const LogId Warning = LogId::create( "Warning" );
11  const LogId UserWarning = LogId::create( "UserWarning" );
12  const LogId Performance = LogId::create( "Performance" );
13  const LogId Lex = LogId::create( "Lex" );
14  const LogId NewFrame = LogId::create( "NewFrame" );
15  const LogId ConsistencyChecks = LogId::create( "ConsistencyChecks" );
16  const LogId ConsistencyChecks_Frame = LogId::create( "ConsistencyChecks_Frame" );
17 }
18 
19 }
20 }