blob: 0d529804b6d8c658ba9339e9b6a1b296eec5b2f0 [file] [log] [blame]
telsoa01c577f2c2018-08-31 09:22:23 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
5#pragma once
6
7#include <vector>
8#include <string>
9
10namespace armnnUtils
11{
12
13struct CsvRow
14{
15 std::vector<std::string> values;
16};
17
18class CsvReader
19{
20public:
21 static std::vector<CsvRow> ParseFile(const std::string& csvFile);
22
23 static std::vector<CsvRow> ParseVector(const std::vector<std::string>& csvVector);
24};
25} // namespace armnnUtils