- wxOutputStream& Write(const void *buffer, size_t size);
- off_t SeekO(off_t pos, wxSeekMode mode = wxFromStart);
- off_t TellO() const;
-
- bool Bad() const { return m_bad; }
- size_t LastWrite() const { return m_lastwrite; }
+ // To solve an ambiguity on GCC
+ inline wxOutputStream& Write(const void *buffer, size_t size)
+ { return wxOutputStream::Write(buffer, size); }