~ubuntu-branches/ubuntu/lucid/libwpd/lucid

« back to all changes in this revision

Viewing changes to src/lib/WPXMemoryStream.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2007-01-11 15:15:57 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070111151557-rn1kysabqbccx3as
Tags: 0.8.8-2
run make check for stream check; build-depend on libcppunit-dev 

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);
45
45
        size_t m_size;
46
46
        uint8_t *m_data;
47
47
        uint8_t *m_tmpBuf;
 
48
        WPXMemoryInputStream(const WPXMemoryInputStream&);
 
49
        WPXMemoryInputStream& operator=(const WPXMemoryInputStream&);
48
50
};
49
51
 
50
52
#endif