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
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-06-18 21:43:28 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-06-18 21:43:28 +0300
commit1a32edebf2402e0111cd261d4036a75cc3fdaec9 (patch)
tree07a62b7c288e8db53b9315cdd84f6f93e95a0c7f /server/TracyPrint.hpp
parentaa5259b20ac53c1914064030cd92c346181c1b53 (diff)
Extract text printing functions.
Diffstat (limited to 'server/TracyPrint.hpp')
-rw-r--r--server/TracyPrint.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/server/TracyPrint.hpp b/server/TracyPrint.hpp
new file mode 100644
index 00000000..5f132d02
--- /dev/null
+++ b/server/TracyPrint.hpp
@@ -0,0 +1,13 @@
+#ifndef __TRACYPRINT_HPP__
+#define __TRACYPRINT_HPP__
+
+namespace tracy
+{
+
+const char* TimeToString( int64_t ns );
+const char* RealToString( double val, bool separator );
+const char* MemSizeToString( int64_t val );
+
+}
+
+#endif