15 lines
169 B
C++
15 lines
169 B
C++
|
#ifndef __TRACYVERSION_HPP__
|
||
|
#define __TRACYVERSION_HPP__
|
||
|
|
||
|
namespace tracy
|
||
|
{
|
||
|
namespace Version
|
||
|
{
|
||
|
enum { Major = 0 };
|
||
|
enum { Minor = 7 };
|
||
|
enum { Patch = 8 };
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|