xref: /haiku/headers/private/shared/AttributeUtilities.h (revision 9642f7705b27e5c270c15fa526d14e1848c2c27d)
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