18 #ifndef SECTION_READER_HPP 
   19 #define SECTION_READER_HPP 
   21 #include <ndb_types.h> 
   33   bool step(Uint32 len);
 
   35   bool getWord(Uint32 * dst);
 
   37   bool peekWord(Uint32 * dst) 
const ;
 
   39   bool peekWords(Uint32 * dst, Uint32 len) 
const;
 
   41   Uint32 getSize() 
const;
 
   43   bool getWords(Uint32 * dst, Uint32 len);
 
   49   bool getWordsPtr(
const Uint32*& readPtr,
 
   54   bool getWordsPtr(Uint32 maxLen,
 
   55                    const Uint32*& readPtr,
 
   86   bool segmentContainsPos(
PosInfo posInfo);
 
   90 Uint32 SectionReader::getSize()
 const