xref: /haiku/src/apps/haikudepot/util/DataIOUtils.h (revision 2897df967633aab846ff4917b53e2af7d1e54eeb)
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