haiku/headers/private/app/LaunchRosterPrivate.h
Axel Dörfler c086a1834b launch_daemon: Improved target support.
* 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).
2015-07-22 20:41:51 +02:00

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