c086a1834b
* You can now put jobs/services into a target. * Instead of having Login started as part of the normal boot process, it's now in the "login" target. * The app_server now launches the login target when a login becomes available (ie. during startup, but that could be improved later on).
25 lines
466 B
C++
25 lines
466 B
C++
/*
|
|
* 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);
|
|
|
|
status_t RegisterSessionDaemon(const BMessenger& daemon);
|
|
|
|
private:
|
|
BLaunchRoster* fRoster;
|
|
};
|
|
|
|
|
|
#endif // _LAUNCH_ROSTER_PRIVATE_H
|