2015-06-10 18:23:05 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Haiku, Inc. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _LAUNCH_ROSTER_PRIVATE_H
|
|
|
|
#define _LAUNCH_ROSTER_PRIVATE_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <LaunchRoster.h>
|
|
|
|
|
|
|
|
|
|
|
|
class BLaunchRoster::Private {
|
|
|
|
public:
|
|
|
|
Private(BLaunchRoster* roster);
|
|
|
|
Private(BLaunchRoster& roster);
|
|
|
|
|
2015-06-15 19:50:04 +03:00
|
|
|
status_t RegisterSessionDaemon(const BMessenger& daemon);
|
2015-06-10 18:23:05 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
BLaunchRoster* fRoster;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _LAUNCH_ROSTER_PRIVATE_H
|