Public member functions documentation
- virtual void addEntry(std::string name, std::string value)=0
- virtual const char* getFirstKey() const =0
- Returns the first key in the environment.
- Returns
- The key or NULL if none.
- virtual const char* getNextKey() const =0
- Returns the next key in the environment.
- Returns
- The key or NULL if none.
- virtual const char* getValue(std::string name) const =0
- Returns the value for the key in the environment.
- Parameters
- name
- The environment name.
- Returns
- The value.
- Exceptions
- NzaeException
- virtual bool hasKey(std::string name) const =0
- Returns TRUE if the key is defined in the environment.
- Parameters
- name
- The environment name.
- Returns
- TRUE if defined.
- virtual void setReadOnly()=0
- virtual int size() const =0
- Returns the number of entries in the environment.
- Returns
- The size.
- virtual ~NzaeEnvironment()