Iterator
class Iterator : : public RefCountedWrappedObjectSernaApi::RefCountedWrappedObject { public: // construct/copy/destruct Iterator(SernaApiBase * = 0); // public member functions bool ok() const; GroveEntityDecl next() ; };
Iterator for traversing entity declarations. Use: while (iter.next()) { do_something(iter.current()); }
Iterator(SernaApiBase * = 0);
bool ok() const;
GroveEntityDecl next() ;