~ubuntu-branches/ubuntu/trusty/libwpd/trusty

« back to all changes in this revision

Viewing changes to src/lib/WPXMemoryStream.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2008-02-12 15:22:12 UTC
  • mfrom: (1.2.1 upstream) (10.1.5 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080212152212-beh3l4ahg9b4o3lj
Tags: 0.8.14-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
        virtual ~WPXMemoryInputStream();
34
34
 
35
35
        virtual bool isOLEStream() { return false; }
36
 
        virtual WPXInputStream * getDocumentOLEStream() { return NULL; }
 
36
        virtual WPXInputStream * getDocumentOLEStream() { return 0; }
37
37
        
38
38
        const virtual uint8_t *read(size_t numBytes, size_t &numBytesRead);
39
39
        virtual int seek(long offset, WPX_SEEK_TYPE seekType);
44
44
        long m_offset;
45
45
        size_t m_size;
46
46
        uint8_t *m_data;
47
 
        uint8_t *m_tmpBuf;
 
47
        WPXMemoryInputStream(const WPXMemoryInputStream&);
 
48
        WPXMemoryInputStream& operator=(const WPXMemoryInputStream&);
48
49
};
49
50
 
50
51
#endif