1/*
2 * Copyright 2015 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _LAUNCH_ROSTER_PRIVATE_H
6#define _LAUNCH_ROSTER_PRIVATE_H
7
8
9#include <LaunchRoster.h>
10
11
12class BLaunchRoster::Private {
13public:
14								Private(BLaunchRoster* roster);
15								Private(BLaunchRoster& roster);
16
17			status_t			RegisterSessionDaemon(const BMessenger& daemon);
18
19private:
20			BLaunchRoster*		fRoster;
21};
22
23
24#endif	// _LAUNCH_ROSTER_PRIVATE_H
25