blob: 077a775ffcce9c994e6a730a5ea6bf51af7dd436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @file llfloatersellland.h
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLFLOATERSELLLAND_H
#define LL_LLFLOATERSELLLAND_H
class LLParcel;
class LLViewerRegion;
class LLFloaterSellLand
{
public:
static void sellLand(LLViewerRegion* region,
LLParcel* parcel);
};
#endif // LL_LLFLOATERSELLLAND_H
|