28 lines
460 B
C
28 lines
460 B
C
|
/*
|
||
|
* Copyright 2011, Axel Dörfler, axeld@pinc-software.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef DECORATOR_PRIVATE_H
|
||
|
#define DECORATOR_PRIVATE_H
|
||
|
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
|
||
|
class BString;
|
||
|
class BWindow;
|
||
|
|
||
|
|
||
|
namespace BPrivate {
|
||
|
|
||
|
|
||
|
bool get_decorator(BString& name);
|
||
|
status_t set_decorator(const BString& name);
|
||
|
status_t preview_decorator(const BString& name, BWindow* window);
|
||
|
|
||
|
|
||
|
} // namespace BPrivate
|
||
|
|
||
|
|
||
|
#endif // DECORATOR_PRIVATE_H
|