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