aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Filesystem.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnUtils/Filesystem.hpp')
-rw-r--r--src/armnnUtils/Filesystem.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/armnnUtils/Filesystem.hpp b/src/armnnUtils/Filesystem.hpp
new file mode 100644
index 0000000000..d6dc5b97fd
--- /dev/null
+++ b/src/armnnUtils/Filesystem.hpp
@@ -0,0 +1,18 @@
+//
+// Copyright © 2020 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+namespace armnnUtils
+{
+namespace Filesystem
+{
+
+long GetFileSize(const char* path);
+
+bool Remove(const char* path);
+
+}
+}