xref: /haiku/src/apps/haikudepot/util/DataIOUtils.h (revision 9f739dd2e868114ce19ae73afcff07caf2ddb8b6)
1 /*
2  * Copyright 2018, Andrew Lindesay <apl@lindesay.co.nz>.
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 #ifndef DATA_IO_UTILS_H
6 #define DATA_IO_UTILS_H
7 
8 
9 #include <DataIO.h>
10 
11 
12 class DataIOUtils {
13 
14 public:
15 	static	status_t		Copy(BDataIO* target, BDataIO* source, size_t size);
16 
17 };
18 
19 
20 #endif // DATA_IO_UTILS_H
21