summaryrefslogtreecommitdiff
path: root/src/intersim/statwraper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/intersim/statwraper.h')
-rw-r--r--src/intersim/statwraper.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/intersim/statwraper.h b/src/intersim/statwraper.h
deleted file mode 100644
index 65c2ab9..0000000
--- a/src/intersim/statwraper.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#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