blob: fb47654476f03f5a3e2db45cd5ad422ae9c42cf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/**
* @file llfloatergroupinvite.h
* @brief This floater is just a wrapper for LLPanelGroupInvite, which
* is used to invite members to a specific group
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLFLOATERGROUPINVITE_H
#define LL_LLFLOATERGROUPINVITE_H
#include "llfloater.h"
#include "lluuid.h"
class LLFloaterGroupInvite
: public LLFloater
{
public:
virtual ~LLFloaterGroupInvite();
static void showForGroup(const LLUUID &group_id);
protected:
LLFloaterGroupInvite(const std::string& name,
const LLRect &rect,
const std::string& title,
const LLUUID& group_id = LLUUID::null);
class impl;
impl* mImpl;
};
#endif
|