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