aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/pdb/utils
diff options
context:
space:
mode:
Diffstat (limited to 'include/pdb/utils')
-rw-r--r--include/pdb/utils/file.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/pdb/utils/file.hpp b/include/pdb/utils/file.hpp
new file mode 100644
index 0000000..5b83f2b
--- /dev/null
+++ b/include/pdb/utils/file.hpp
@@ -0,0 +1,18 @@
+// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "PDB repository" project.
+// For details, see https://github.com/egor-tensin/pdb-repo.
+// Distributed under the MIT License.
+
+#pragma once
+
+#include <cstddef>
+
+#include <string>
+
+namespace pdb
+{
+ namespace file
+ {
+ std::size_t get_size(const std::string&);
+ }
+}