2011-04-28 07:56:50 +00:00
|
|
|
#ifndef COMPONENTS_FILES_PATH_HPP
|
|
|
|
#define COMPONENTS_FILES_PATH_HPP
|
2011-01-04 00:34:55 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2011-04-28 07:56:50 +00:00
|
|
|
namespace Files
|
2011-01-04 00:34:55 +00:00
|
|
|
{
|
2011-04-28 07:56:50 +00:00
|
|
|
enum PathTypeEnum
|
2011-01-04 00:34:55 +00:00
|
|
|
{
|
2011-04-28 07:56:50 +00:00
|
|
|
Path_ConfigUser,
|
|
|
|
Path_ConfigGlobal
|
2011-01-04 00:34:55 +00:00
|
|
|
};
|
2011-04-28 07:56:50 +00:00
|
|
|
|
|
|
|
std::string getPath (PathTypeEnum parType, const std::string parApp, const std::string parFile);
|
2011-01-04 00:34:55 +00:00
|
|
|
}
|
2011-04-28 07:56:50 +00:00
|
|
|
|
2011-01-04 00:34:55 +00:00
|
|
|
#endif
|