41 #ifndef __OPENFLUID_BASE_ENVPROPERTIES_HPP__ 
   42 #define __OPENFLUID_BASE_ENVPROPERTIES_HPP__ 
   48 namespace openfluid { 
namespace base {
 
   57     typedef std::map<std::string,bool> KeyBoolMap_t;
 
   58     typedef std::map<std::string,std::string> KeyStringMap_t;
 
   60     KeyBoolMap_t m_BoolValues;
 
   61     KeyStringMap_t m_StringValues;
 
   80     bool setValue(std::string Key, 
const bool Value);
 
   87     bool setValue(std::string Key, 
const std::string& Value);
 
   94     bool getValue(std::string Key, 
bool& Value) 
const;
 
  101     bool getValue(std::string Key, std::string& Value) 
const;
 
Definition: EnvProperties.hpp:53
#define OPENFLUID_API
Definition: dllexport.hpp:87