const begin and end

release/4.3a0
Frank Dellaert 2009-08-28 20:06:29 +00:00
parent fe8870a5f0
commit 8d54086f92
1 changed files with 2 additions and 2 deletions

View File

@ -52,8 +52,8 @@ namespace gtsam {
virtual void operator+=(const FGConfig & delta);
virtual FGConfig operator+(const FGConfig & delta) const;
const_iterator begin() {return values.begin();}
const_iterator end() {return values.end();}
const_iterator begin() const {return values.begin();}
const_iterator end() const {return values.end();}
/** get a vector in the configuration by name */
Vector get(const std::string& name) const;