blob: 418ee010755e70b9fe1f8b65a89713e2b4568ae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//========================================================================
//
// ProfileData.h
//
// Copyright 2005 Jonathan Blandford <jrb@gnome.org>
//
//========================================================================
#ifndef PROFILE_DATA_H
#define PROFILE_DATA_H
#ifdef USE_GCC_PRAGMAS
#pragma interface
#endif
//------------------------------------------------------------------------
// ProfileData
//------------------------------------------------------------------------
class ProfileData {
public:
// Constructor.
ProfileData ();
// Destructor.
~ProfileData() {}
void addElement (double elapsed);
int getCount () { return count; }
double getTotal () { return total; }
double getMin () { return max; }
double getMax () { return max; }
private:
int count; // size of <elems> array
double total; // number of elements in array
double min; // reference count
double max; // reference count
};
#endif
|