integration/gwnavruntimeglue/perfmarkerinterface/perfmarkerinterface.h Source File

perfmarkerinterface.h
Go to the documentation of this file.
1 /*
2 * Copyright 2016 Autodesk, Inc. All rights reserved.
3 * Use of this software is subject to the terms of the Autodesk license agreement and any attachments or Appendices thereto provided at the time of installation or download,
4 * or which otherwise accompanies this software in either electronic or hard copy form, or which is signed by you and accepted by Autodesk.
5 */
6 
7 #pragma once
8 
10 
11 namespace KyGlue
12 {
13 
16 {
17 private:
18  virtual void Begin(const char* name);
19  virtual void End();
20 };
21 
22 }
23 
Concrete implementation of IPerfMarkerInterface.
Definition: perfmarkerinterface.h:15
virtual void End()
End the current marker.
Definition: perfmarkerinterface.cpp:18
virtual void Begin(const char *name)
Begin a new marker.
Definition: perfmarkerinterface.cpp:17
Definition: defaultgeneratorglue.h:14
An abstract interface for performance tracking markers.
Definition: iperfmarkerinterface.h:18