Constructor
| 157 | |
| 158 | // Constructor |
| 159 | Profiler::Profiler() :mRootNode("Root", nullptr) { |
| 160 | |
| 161 | mCurrentNode = &mRootNode; |
| 162 | mNbDestinations = 0; |
| 163 | mNbAllocatedDestinations = 0; |
| 164 | mProfilingStartTime = clock::now(); |
| 165 | mFrameCounter = 0; |
| 166 | |
| 167 | allocatedDestinations(1); |
| 168 | } |
| 169 | |
| 170 | // Destructor |
| 171 | Profiler::~Profiler() { |
nothing calls this directly
no outgoing calls
no test coverage detected