Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'GcodeProcessorLib/utilities.h')
-rw-r--r--GcodeProcessorLib/utilities.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/GcodeProcessorLib/utilities.h b/GcodeProcessorLib/utilities.h
index 7aa45b0..a71a36e 100644
--- a/GcodeProcessorLib/utilities.h
+++ b/GcodeProcessorLib/utilities.h
@@ -86,7 +86,7 @@ namespace utilities{
std::string join(const std::string* strings, size_t length, std::string sep);
std::string join(const std::vector<std::string> strings, std::string sep);
-
+ // bool contains(const std::string source, const std::string substring); // Might need this later
std::istream& safe_get_line(std::istream& is, std::string& t);
std::string center(std::string input, int width);
@@ -105,6 +105,8 @@ namespace utilities{
std::string create_uuid();
+ bool does_file_exist(const std::string& file_path);
+
bool get_temp_file_path_for_file(const std::string& file_path, std::string& temp_file_path);
double hypot(double x, double y);