OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
State.cpp
Go to the documentation of this file.
1 #include <ossim/base/State.h>
2 
3 
5  const ossimString& prefix)
6 {
7  return true;
8 }
9 
11  const ossimString& prefix)const
12 {
13  kwl.add(prefix, "type", getTypeName(), true);
14 
15  return true;
16 }
Represents serializable keyword/value map.
virtual bool save(ossimKeywordlist &kwl, const ossimString &prefix="") const =0
Allows a state to be saved to a keywordlist.
Definition: State.cpp:10
void add(const char *prefix, const ossimKeywordlist &kwl, bool overwrite=true)
virtual bool load(const ossimKeywordlist &kwl, const ossimString &prefix="")=0
Allows a state to be loaded from keywordlist.
Definition: State.cpp:4