aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-07-02 09:23:48 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-07-02 09:23:48 -0400
commitd1d16ceb2cab505fb09ced115f5fb08bc3093acd (patch)
tree08b1ab7c68f9df49f1302fbfe01836c53188ec96 /include
parent226bae411b83d851d5b30e0b0fa28a68bb8e7040 (diff)
c++17 fixes, creating needed files
Diffstat (limited to 'include')
-rw-r--r--include/common.hpp4
-rw-r--r--include/fileio.hpp4
2 files changed, 6 insertions, 2 deletions
diff --git a/include/common.hpp b/include/common.hpp
index 9ecd912..a03a888 100644
--- a/include/common.hpp
+++ b/include/common.hpp
@@ -23,11 +23,11 @@ constexpr float PI = 3.1415926535f;
*/
unsigned int millis(void);
-namespace std {
+/*namespace std {
template<class T>
constexpr const T& clamp(const T& v, const T& lo, const T& hi) {
return (v > hi) ? hi : ((v > lo) ? v : lo);
}
-}
+}*/
#endif // COMMON_HPP_
diff --git a/include/fileio.hpp b/include/fileio.hpp
index c5e33ec..3ec4854 100644
--- a/include/fileio.hpp
+++ b/include/fileio.hpp
@@ -12,4 +12,8 @@ int getdir(std::string dir, std::list<std::string>& files);
std::string readFile(const std::string& path);
std::vector<std::string> readFileA(const std::string& path);
+void copyFile(const std::string& to, const std::string& from);
+
+bool fileExists(const std::string& file);
+
#endif // FILEIO_HPP_