]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/archive/archivetest.h
removed is_vertical check box, it was duplicating the ticks direction radiobox functi...
[wxWidgets.git] / tests / archive / archivetest.h
index 3799e3cd598bd7c4cb055ea431ddd8c298207f2f..eef3d45fe117575e2519a3e50020960246279b78 100644 (file)
@@ -38,6 +38,7 @@ public:
 
     int GetOptions() const { return m_options; }
     wxFileOffset GetLength() const { return m_size; }
+    bool IsSeekable() const { return (m_options & PipeOut) == 0; }
 
     // gives away the data, this stream is then empty, and can be reused
     void GetData(char*& data, size_t& size);
@@ -67,6 +68,7 @@ public:
 
     void Rewind();
     wxFileOffset GetLength() const { return m_size; }
+    bool IsSeekable() const { return (m_options & PipeIn) == 0; }
     void SetData(TestOutputStream& out);
 
 private: