xref: /haiku/headers/private/shared/AttributeUtilities.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright 2016 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef ATTRIBUTE_UTILITIES_H
6 #define ATTRIBUTE_UTILITIES_H
7 
8 
9 #include <SupportDefs.h>
10 
11 
12 class BNode;
13 
14 
15 namespace BPrivate {
16 
17 
18 status_t CopyAttributes(BNode& source, BNode& destination);
19 
20 
21 }	// namespace BPrivate
22 
23 
24 #endif // ATTRIBUTE_UTILITIES_H
25