1 #ifndef __JLANG__JABSTRACTOBJECTREADER__ 
    2 #define __JLANG__JABSTRACTOBJECTREADER__ 
   12 namespace JPP { 
using namespace JLANG; }
 
  151     virtual void open(
const char* file_name)
 
Interface for object iteration with rewinding. 
 
virtual void open(const char *file_name)
Open device. 
 
virtual void rewind()
Rewind. 
 
unsigned int skip_type
Type definition for number of objects to skip. 
 
virtual void close()
Close device. 
 
Interface of object iteration for a single data type. 
 
virtual skip_type skip(const skip_type ns)
Skip items. 
 
virtual JObjectIterator< T > * getHelper() const =0
Get helper. 
 
virtual const pointer_type & next()
Get next element. 
 
virtual bool is_open() const 
Check is device is open. 
 
Abstract interface for object reading. 
 
JObjectIterator< T >::pointer_type pointer_type
 
virtual JAccessibleObjectIterator< T > * getHelper() const =0
Get helper. 
 
Interface for object iteration with named access. 
 
virtual bool hasNext()
Check availability of next element. 
 
Abstract interface for object reading with rewinding. 
 
virtual JRewindableObjectIterator< T > * getHelper() const =0
Get helper. 
 
Abstract interface for object reading with named access.