VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrvUtil
DtProfileIterator.h
Go to the documentation of this file.
1
/*********************************************************************************
2
** Copyright (c) 2014 MAK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************************/
5
10
11
#pragma once
12
13
#include <
vrvUtil/vrvUtil.h
>
14
15
namespace
makVrv
16
{
17
//forward defs
18
typedef
unsigned
long
long
DtUInt64
;
19
class
DtProfileNode
;
20
23
class
DT_DLL_VRVUTIL
DtProfileIterator
24
{
25
public
:
27
void
first();
28
30
void
next();
31
33
bool
isDone()
const
;
34
39
void
enterChild(
int
index );
40
42
void
enterParent( );
43
45
void
enterLargestChild( );
46
49
const
char
* currentName();
50
53
int
currentTotalCalls();
54
57
DtUInt64
currentTotalTime();
58
60
DtUInt64
currentMaxTime();
61
63
DtUInt64
currentMinTime();
64
66
const
char
* currentParentName()
const
;
67
69
int
currentParentTotalCalls()
const
;
70
72
DtUInt64
currentParentTotalTime()
const
;
73
75
DtProfileNode
* currentNode();
76
78
DtProfileNode
* currenParent();
79
80
protected
:
82
DtProfileIterator
(
DtProfileNode
* start );
83
friend
class
DtProfileManager
;
84
85
DtProfileNode
*
myCurrentParent
;
86
DtProfileNode
*
myCurrentChild
;
87
};
88
}
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)