| 8 | namespace acl { |
| 9 | |
| 10 | aio_fstream::aio_fstream(aio_handle* handle) |
| 11 | : aio_stream(handle), aio_istream(handle), aio_ostream(handle) |
| 12 | { |
| 13 | acl_assert(handle); |
| 14 | } |
| 15 | |
| 16 | aio_fstream::aio_fstream(aio_handle* handle, ACL_FILE_HANDLE fd, |
| 17 | unsigned int oflags /* = 600 */) |
nothing calls this directly
no test coverage detected