aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/CsvReader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnUtils/CsvReader.hpp')
-rw-r--r--src/armnnUtils/CsvReader.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/armnnUtils/CsvReader.hpp b/src/armnnUtils/CsvReader.hpp
deleted file mode 100644
index d95f4f7055..0000000000
--- a/src/armnnUtils/CsvReader.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-#pragma once
-
-#include <vector>
-#include <string>
-
-namespace armnnUtils
-{
-
-struct CsvRow
-{
- std::vector<std::string> values;
-};
-
-class CsvReader
-{
-public:
- static std::vector<CsvRow> ParseFile(const std::string& csvFile);
-
- static std::vector<CsvRow> ParseVector(const std::vector<std::string>& csvVector);
-};
-} // namespace armnnUtils