blob: 7cf245d15dc004fe29e01519ac323599c74e4beb (
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, std::vector<LLUUID> *agent_ids = NULL);
protected:
LLFloaterGroupInvite(const std::string& name,
const LLRect &rect,
const std::string& title,
const LLUUID& group_id = LLUUID::null);
class impl;
impl* mImpl;
};
#endif
|