00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00026 #ifndef __PDF_CORE_STREAM_HEADER_INCLUDED__
00027 #define __PDF_CORE_STREAM_HEADER_INCLUDED__
00028
00029 #ifndef __PDF_CORE_OBJECT_HEADER_INCLUDED__
00030 #include "Object.hh"
00031 #endif
00032
00033 #include <vector>
00034 #include <iosfwd>
00035
00036 namespace pdf { namespace core {
00037
00038 class CDictionary ;
00039
00054 class CStream : public CObject
00055 {
00056 protected :
00057 typedef std::vector<unsigned char> CByteVec ;
00058
00059 public :
00060 ~CStream( ) ;
00061
00062 std::ostream& Write( std::ostream& os ) const ;
00063
00064 protected :
00078 virtual const CByteVec& GetContent( CByteVec& output ) const = 0 ;
00079
00080 virtual void MakeDictionary( CDictionary& dict ) const ;
00081 } ;
00082
00083 } }
00084
00085 #endif