blob: 70f5cf426e9158304b51cafbbcaabcd5b34e77e9 (
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(void);
public:
void setenv(const std::string &key, const std::string &value) const;
std::string getenv(const std::string &key) const;
static Tools &getInstance(void);
};
}
|