BenchGen
BenchGen is a tool for generating benchmarks to stress-test a computing system.
Loading...
Searching...
No Matches
varTypes.h
Go to the documentation of this file.
1#ifndef VARTYPES_H
2#define VARTYPES_H
3
4#include "globalIncludes.h"
5
12class VarTypes {
13 public:
14 // Constant string representing the "array" variable type
15 inline static const std::string ARRAY = "array";
16 inline static const std::string SORTEDLIST = "sortedlist";
17};
18
19#endif
Class that defines various variable types as constants.
Definition varTypes.h:12
static const std::string SORTEDLIST
Definition varTypes.h:16
static const std::string ARRAY
Definition varTypes.h:15