You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef COMPONENTS_FILES_PATH_HPP
|
|
#define COMPONENTS_FILES_PATH_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace Files
|
|
{
|
|
enum PathTypeEnum
|
|
{
|
|
Path_ConfigUser,
|
|
Path_ConfigGlobal
|
|
};
|
|
|
|
std::string getPath (PathTypeEnum parType, const std::string parApp, const std::string parFile);
|
|
}
|
|
|
|
#endif
|