#ifndef __HGOCRRETIMPL_HPP__ #define __HGOCRRETIMPL_HPP__ #include "../base/HGDef.h" #include "../base/HGBaseErr.h" #include #include class HGOCRRetImpl { public: HGOCRRetImpl(const std::vector &blockInfo); ~HGOCRRetImpl(); HGResult GetBlockCount(HGUInt *count); HGResult GetBlockText(HGUInt index, const HGChar** text); private: std::vector m_blockInfo; }; #endif /* __HGOCRRETIMPL_HPP__ */