]> git.tdb.fi Git - libs/core.git/blobdiff - source/utils.h
Move files to prepare for assimilation into core
[libs/core.git] / source / utils.h
diff --git a/source/utils.h b/source/utils.h
deleted file mode 100644 (file)
index 8d4f9dd..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef MSP_IO_UTILS_H_
-#define MSP_IO_UTILS_H_
-
-namespace Msp {
-namespace IO {
-
-class Base;
-
-/** Reads data from an object.  Does not return until the requested amount of
-data is read, regardless of the blocking mode of the object.
-
-Note: If the data is not immediately available and the object is in non-blocking
-mode, this function effectively becomes a busyloop until it can get more
-data. */
-unsigned read_all(Base &, char *, unsigned);
-
-} // namespace IO
-} // namespace Msp
-
-#endif