sys-sage
Loading...
Searching...
No Matches
src
parsers
caps-numa-benchmark.hpp
1
#ifndef CAPS_NUMA_BENCHMARK
2
#define CAPS_NUMA_BENCHMARK
3
4
#include "Component.hpp"
5
#include "DataPath.hpp"
6
7
int
parseCapsNumaBenchmark(
Component
* rootComponent,
string
benchmarkPath,
string
delim =
";"
);
8
9
class
CSVReader
10
{
11
std::string benchmarkPath;
12
std::string delimiter;
13
public
:
14
CSVReader
(std::string benchmarkPath, std::string delm =
";"
) : benchmarkPath(benchmarkPath), delimiter(delm) { }
15
// Function to fetch data from a CSV File
16
int
getData(std::vector<std::vector<std::string> >*);
17
};
18
19
#endif
CSVReader
Definition
caps-numa-benchmark.hpp:10
Component
Definition
Component.hpp:42
Generated by
1.10.0