1/*
2 * Copyright 2011, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef DECORATOR_PRIVATE_H
6#define DECORATOR_PRIVATE_H
7
8
9#include <SupportDefs.h>
10
11
12class BString;
13class BWindow;
14
15
16namespace BPrivate {
17
18
19bool get_decorator(BString& name);
20status_t set_decorator(const BString& name);
21status_t preview_decorator(const BString& name, BWindow* window);
22
23
24}	// namespace BPrivate
25
26
27#endif	// DECORATOR_PRIVATE_H
28