Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-08-27 17:05:36 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-08-27 17:05:36 +0300
commitbe392a76fb7eb684fab259485d27a6adbceeef32 (patch)
treefcc7de1a6e6583a7bc2a1e26e9b50f1752c3291a /public
parent165099ca877154289ad1e4f23ed26b9f1de5707b (diff)
Move TracyVersion.hpp to common.
Diffstat (limited to 'public')
-rw-r--r--public/common/TracyVersion.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/public/common/TracyVersion.hpp b/public/common/TracyVersion.hpp
new file mode 100644
index 00000000..d7d900db
--- /dev/null
+++ b/public/common/TracyVersion.hpp
@@ -0,0 +1,14 @@
+#ifndef __TRACYVERSION_HPP__
+#define __TRACYVERSION_HPP__
+
+namespace tracy
+{
+namespace Version
+{
+enum { Major = 0 };
+enum { Minor = 8 };
+enum { Patch = 4 };
+}
+}
+
+#endif