Pol  Revision:cb584c9
contiter.h
Go to the documentation of this file.
1 
7 #ifndef BSCRIPT_CONTITER_H
8 #define BSCRIPT_CONTITER_H
9 namespace Pol
10 {
11 namespace Bscript
12 {
13 class ContIterator : public BObjectImp
14 {
15 public:
16  ContIterator();
17 
18  virtual BObject* step();
19 
20  BObjectImp* copy( void ) const;
21  size_t sizeEstimate() const;
22  std::string getStringRep() const;
23 };
24 }
25 }
26 #endif
BObjectImp * copy(void) const
Definition: executor.cpp:951
size_t sizeEstimate() const
Definition: executor.cpp:955
std::string getStringRep() const
Definition: executor.cpp:959
virtual BObject * step()
Definition: executor.cpp:947
Definition: berror.cpp:12