blob: 20f5bb76cc3c30bec7d8e84651f6590cfdde4e1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef XDG_HPP_INCLUDED
#define XDG_HPP_INCLUDED
#include <string>
/**
* Returns a path for the given filename, according to the XDG base
* directory specification, see
* http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
*/
std::string xdg_config_path(const std::string& filename);
#endif /* XDG_HPP_INCLUDED */
|