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
12class BNode;
13
14
15namespace BPrivate {
16
17
18status_t CopyAttributes(BNode& source, BNode& destination);
19
20
21}	// namespace BPrivate
22
23
24#endif // ATTRIBUTE_UTILITIES_H
25