00001 #include <oh/core/HistogramData.h>
00002 #include <oh/core/ProfileData.h>
00003 #include <oh/core/GraphData.h>
00004
00005 #define FOR_OH_HISTOGRAM_TYPES(decl) \
00006 decl( oh::HistogramData<char> ) \
00007 decl( oh::HistogramData<short> ) \
00008 decl( oh::HistogramData<int> ) \
00009 decl( oh::HistogramData<float> ) \
00010 decl( oh::HistogramData<double> ) \
00011 decl( oh::ProfileData )
00012
00013 #define FOR_OH_ALL_TYPES(decl) \
00014 FOR_OH_HISTOGRAM_TYPES(decl) \
00015 decl( oh::GraphData ) \
00016 decl( oh::Graph2DData )
00017