Ion
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
environment.h
Go to the documentation of this file.
1 
18 #ifndef ION_PORT_ENVIRONMENT_H_
19 #define ION_PORT_ENVIRONMENT_H_
20 
21 #include <string>
22 
23 namespace ion {
24 namespace port {
25 
28 ION_API const std::string GetEnvironmentVariableValue(const std::string& name);
29 
31 ION_API void SetEnvironmentVariableValue(const std::string& name,
32  const std::string& value);
33 
34 } // namespace port
35 } // namespace ion
36 
37 #endif // ION_PORT_ENVIRONMENT_H_
const std::string GetEnvironmentVariableValue(const std::string &name)
Returns the value of the named environment variable.
Definition: environment.cc:29
double value
std::string name
Definition: printer.cc:324
void SetEnvironmentVariableValue(const std::string &name, const std::string &value)
Sets the named environment variable to the passed value.
Definition: environment.cc:34