Name

Iterator

Synopsis

class Iterator
  :  : public RefCountedWrappedObjectSernaApi::RefCountedWrappedObject
 {
public:
  // construct/copy/destruct
  Iterator(SernaApiBase * = 0);

  // public member functions

  bool ok() const;
  GroveEntityDecl next() ;
};

Description

Iterator for traversing entity declarations. Use: while (iter.next()) { do_something(iter.current()); }

Iterator construct/copy/destruct

  1. Iterator(SernaApiBase * = 0);


Iterator public member functions

  1. bool ok() const;