blob: f7d73e34d6811eb40b2764c208dfe22e45e7ff56 (
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
|
/**
* @file llfloaterabout.h
* @brief The about box from Help -> About
*
* Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLFLOATERABOUT_H
#define LL_LLFLOATERABOUT_H
#include "llfloater.h"
class LLFloaterAbout
: public LLFloater
{
public:
LLFloaterAbout();
virtual ~LLFloaterAbout();
static void show(void*);
private:
static LLFloaterAbout* sInstance;
};
#endif // LL_LLFLOATERABOUT_H
|