25 lines
460 B
C
25 lines
460 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 RegisterSession(const BMessenger& target);
|
||
|
|
||
|
private:
|
||
|
BLaunchRoster* fRoster;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // _LAUNCH_ROSTER_PRIVATE_H
|