summaryrefslogtreecommitdiff
path: root/src/statwrapper.h
blob: 4c004473841f0376fc38ea51846edd4a02059d43 (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