Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef IMPRESOURCEDIR_H_INCLUDED
00011 #define IMPRESOURCEDIR_H_INCLUDED
00012
00013 #include <boost/shared_ptr.hpp>
00014
00015
00016 namespace libebook
00017 {
00018
00019 class IMPHeader;
00020 class IMPResourceDirImpl;
00021
00024 class IMPResourceDir
00025 {
00026 public:
00027 IMPResourceDir(librevenge::RVNGInputStream *input, const IMPHeader &header);
00028
00036 boost::shared_ptr<librevenge::RVNGInputStream> getNameStream() const;
00037
00044 boost::shared_ptr<librevenge::RVNGInputStream> getTypeStream() const;
00045
00046 private:
00047 boost::shared_ptr<IMPResourceDirImpl> m_impl;
00048 };
00049
00050 }
00051
00052 #endif // IMPRESOURCEDIR_H_INCLUDED
00053
00054