pure virtual

This commit is contained in:
Glenn Maynard
2006-11-30 04:02:53 +00:00
parent 1c3e34d4a4
commit 9bbed7d6fc
+2 -2
View File
@@ -23,8 +23,8 @@ public:
* that will be read via Read(). GetStreamToSourceRatio() returns the ratio
* for extrapolating the source frames of the remainder of the block. These
* values are valid so long as no parameters are changed before the next Read(). */
virtual int GetNextSourceFrame() const { return 0; } // XXX: should be pure
virtual float GetStreamToSourceRatio() const { return 1.0f; } // XXX: should be pure
virtual int GetNextSourceFrame() const = 0;
virtual float GetStreamToSourceRatio() const = 0;
RString GetError() const { return m_sError; }