summaryrefslogtreecommitdiff
path: root/src/intersim/statwraper.h
blob: 65c2ab994343013ae7e97722823d1c44c04d01a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef STAT_WRAPER_H
#define STAT_WRAPER_H

class Stats* StatCreate (const char * name, double bin_size, int num_bins) ;
void StatClear(void * st);
void StatAddSample (void * st, int val);
double StatAverage(void * st) ;
double StatMax(void * st) ;
double StatMin(void * st) ;
void StatDisp (void * st);

#endif