projects
/
dyninst.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Moved the definitions of the << operator into the class declaration to
[dyninst.git]
/
common
/
h
/
aggregation.h
1
2
/*
3
* $Log: aggregation.h,v $
4
* Revision 1.3 1994/07/02 01:47:17 markc
5
* Rename aggregation operator defines.
6
*
7
* Revision 1.2 1994/06/15 14:56:56 markc
8
* Added log.
9
*
10
*/
11
12
#ifndef _AGGREG_H
13
#define _AGGREG_H
14
15
// how are samples combined
16
#define aggSum 0
17
#define aggMin 1
18
#define aggMax 2
19
#define aggAvg 3
20
21
#endif