Geometrize  1.0
An application for geometrizing images into geometric primitives
searchpaths.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <vector>
5 
6 namespace geometrize
7 {
8 
9 namespace searchpaths
10 {
11 
16 std::string getApplicationDirectoryPath();
17 
23 std::vector<std::string> getScriptSearchPaths();
24 
30 std::vector<std::string> getTemplateSearchPaths();
31 
36 std::string getDefaultTaskSettingsFilename();
37 
44 std::string getAutosaveTaskSettingsFilename(const std::string& hashOfFirstTargetImage);
45 
51 std::vector<std::string> getAutosaveTaskSettingsSearchPaths();
52 
53 }
54 
55 }
geometrize::searchpaths::getTemplateSearchPaths
std::vector< std::string > getTemplateSearchPaths()
getTemplateSearchpaths Gets the directory paths that the program will search for project file templat...
Definition: searchpaths.cpp:26
geometrize::searchpaths::getScriptSearchPaths
std::vector< std::string > getScriptSearchPaths()
getScriptSearchPaths Gets the directory paths that the program will search for scripts....
Definition: searchpaths.cpp:21
geometrize::searchpaths::getAutosaveTaskSettingsFilename
std::string getAutosaveTaskSettingsFilename(const std::string &hashOfFirstTargetImage)
getAutomaticTaskSettingsFilename Gets the name of a task settings file to be autosaved (e....
Definition: searchpaths.cpp:36
searchpaths.h
geometrize
Definition: commandlineparser.cpp:73
geometrize::searchpaths::getAutosaveTaskSettingsSearchPaths
std::vector< std::string > getAutosaveTaskSettingsSearchPaths()
getAutosaveTaskSettingsSearchPaths Gets the directory paths that the program will search for autosave...
Definition: searchpaths.cpp:41
geometrize::searchpaths::getDefaultTaskSettingsFilename
std::string getDefaultTaskSettingsFilename()
getTaskSettingsFilename Gets the default name of a task settings file that is manually saved by the u...
Definition: searchpaths.cpp:31
geometrize::searchpaths::getApplicationDirectoryPath
std::string getApplicationDirectoryPath()
getApplicationDirectoryPath Gets the directory that contains the application executable.
Definition: searchpaths.cpp:16