File: F3DConfigFileTools.h

package info (click to toggle)
f3d 1.3.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 20,420 kB
  • sloc: cpp: 28,581; sh: 306; xml: 155; python: 65; makefile: 21; javascript: 17
file content (20 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @class   F3DConfigFileTools
 * @brief   A namespace to recover path to config file and related directories, cross platform
 *
 */

#ifndef F3DTools_h
#define F3DTools_h

#include <string>

namespace F3DConfigFileTools
{
std::string GetUserConfigFileDirectory();
std::string GetBinaryConfigFileDirectory();
std::string GetSystemConfigFileDirectory();
std::string GetConfigFilePath();
}

#endif