diff options
Diffstat (limited to '')
-rw-r--r-- | src/file.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/file.cpp b/src/file.cpp index 5de5f6c..26986a5 100644 --- a/src/file.cpp +++ b/src/file.cpp | |||
@@ -98,3 +98,13 @@ bool Bu::File::canSeek() | |||
98 | return true; | 98 | return true; |
99 | } | 99 | } |
100 | 100 | ||
101 | bool Bu::File::isBlocking() | ||
102 | { | ||
103 | return true; | ||
104 | } | ||
105 | |||
106 | void Bu::File::setBlocking( bool bBlocking ) | ||
107 | { | ||
108 | return; | ||
109 | } | ||
110 | |||