]> git.tdb.fi Git - libs/core.git/blobdiff - source/debug/profilingscope.h
Use nullptr instead of 0 for pointers
[libs/core.git] / source / debug / profilingscope.h
index 107688886a931db5891049551e6aa1ddc2c2ecba..586efa31d53fbf062a175ae7a44fb1e31897ac3f 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef MSP_DEBUG_PROFILINGSCOPE_H_
 #define MSP_DEBUG_PROFILINGSCOPE_H_
 
+#include <msp/core/noncopyable.h>
 #include <msp/time/timestamp.h>
 #include "profiler.h"
 
@@ -12,18 +13,16 @@ RAII timing class to accompany Profiler.  Timing starts when an object is
 created and ends when it goes out of scope.  If there was another object in an
 outer scope, it is notified of the time used in inner scopes.
 */
-class ProfilingScope
+class ProfilingScope: private NonCopyable
 {
 private:
        Profiler &profiler;
        std::string name;
-       ProfilingScope *parent;
+       ProfilingScope *parent = nullptr;
        Time::TimeStamp entry_time;
        Time::TimeDelta time_spent;
        Time::TimeDelta child_time;
 
-       ProfilingScope(const ProfilingScope &);
-       ProfilingScope &operator=(const ProfilingScope &);
 public:
        ProfilingScope(Profiler &p, const std::string &n);
        ~ProfilingScope();