blob: f70486f363a15ebcbd16d9a7982378ea23cd7dbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* @file tools.h
* @brief Declaration of miscellaneous tools.
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
#include <string>
namespace Binc {
class Tools {
private:
Tools();
public:
void setenv(const std::string &key, const std::string &value) const;
std::string getenv(const std::string &key) const;
static Tools &getInstance();
};
}
|