1/*
2 * Copyright 2012, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _PICTURE_PRIVATE_H
6#define _PICTURE_PRIVATE_H
7
8
9#include <Picture.h>
10#include <OS.h>
11
12
13void reconnect_pictures_to_app_server();
14
15
16class BPicture::Private {
17public:
18								Private(BPicture* picture);
19			void				ReconnectToAppServer();
20private:
21			BPicture*			fPicture;
22};
23
24
25#endif // _PICTURE_PRIVATE_H
26