summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelgroupinvite.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llpanelgroupinvite.h
Print done when done.
Diffstat (limited to 'indra/newview/llpanelgroupinvite.h')
-rw-r--r--indra/newview/llpanelgroupinvite.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/indra/newview/llpanelgroupinvite.h b/indra/newview/llpanelgroupinvite.h
new file mode 100644
index 0000000000..bab39a1a66
--- /dev/null
+++ b/indra/newview/llpanelgroupinvite.h
@@ -0,0 +1,32 @@
+/**
+ * @file llpanelgroupinvite.h
+ *
+ * Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLPANELGROUPINVITE_H
+#define LL_LLPANELGROUPINVITE_H
+
+#include "llpanel.h"
+#include "lluuid.h"
+
+class LLPanelGroupInvite
+: public LLPanel
+{
+public:
+ LLPanelGroupInvite(const std::string& name, const LLUUID& group_id);
+ ~LLPanelGroupInvite();
+
+ void clear();
+ void update();
+
+ void setCloseCallback(void (*close_callback)(void*), void* data);
+
+ virtual BOOL postBuild();
+protected:
+ class impl;
+ impl* mImplementation;
+};
+
+#endif