ut_IOStream

thanks ogws
This commit is contained in:
elijah-thomas774
2024-05-04 23:47:10 -04:00
parent e1f491d2d1
commit 20bedbfc3b
5 changed files with 56 additions and 22 deletions
+25
View File
@@ -0,0 +1,25 @@
#include <nw4r/ut.h>
namespace nw4r {
namespace ut {
NW4R_UT_RTTI_DEF_BASE(IOStream);
bool IOStream::ReadAsync(void *dst, unsigned long size, AsyncCallback callback, void *arg) {
return false;
}
bool IOStream::Write(const void *src, unsigned long size) {
return false;
}
bool IOStream::WriteAsync(const void *src, unsigned long size, AsyncCallback callback, void *arg) {
return false;
}
bool IOStream::IsBusy() const {
return false;
}
} // namespace ut
} // namespace nw4r