blob: d3483dd6d492ca0e5c42e78af4c5361fc97064ca (
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
35
36
|
/**
* @file llfloaterbuildoptions.h
* @brief LLFloaterBuildOptions class definition
*
* Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
* $License$
*/
/**
* Panel for setting global object-editing options, specifically
* grid size and spacing.
*/
#ifndef LL_LLFLOATERBUILDOPTIONS_H
#define LL_LLFLOATERBUILDOPTIONS_H
#include "llfloater.h"
class LLFloaterBuildOptions
: public LLFloater
{
protected:
LLFloaterBuildOptions();
~LLFloaterBuildOptions();
public:
static void show(void*);
static LLFloaterBuildOptions* getInstance();
static BOOL visible(void*);
protected:
static LLFloaterBuildOptions* sInstance;
};
#endif
|