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