]> git.lizzy.rs Git - minetest.git/blobdiff - src/util/timetaker.h
(se)SerializeString: Include max length in the name
[minetest.git] / src / util / timetaker.h
index 5512c205fe611ab72263966bc1e3f5efb2c52fcf..bc3d4a88dbd4562709a98ff86adc5b8523e105fb 100644 (file)
@@ -17,11 +17,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef UTIL_TIMETAKER_HEADER
-#define UTIL_TIMETAKER_HEADER
+#pragma once
 
-#include "../irrlichttypes.h"
-#include "../gettime.h"
+#include "irrlichttypes.h"
+#include "gettime.h"
 
 /*
        TimeTaker
@@ -30,25 +29,22 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 class TimeTaker
 {
 public:
-       TimeTaker(const char *name, u32 *result=NULL,
-               TimePrecision=PRECISION_MILLI);
+       TimeTaker(const std::string &name, u64 *result=nullptr,
+               TimePrecision prec=PRECISION_MILLI);
 
        ~TimeTaker()
        {
                stop();
        }
 
-       u32 stop(bool quiet=false);
+       u64 stop(bool quiet=false);
 
-       u32 getTimerTime();
+       u64 getTimerTime();
 
 private:
-       const char *m_name;
-       u32 m_time1;
-       bool m_running;
+       std::string m_name;
+       u64 m_time1;
+       bool m_running = true;
        TimePrecision m_precision;
-       u32 *m_result;
+       u64 *m_result = nullptr;
 };
-
-#endif
-