blob: 5c58048db0ec4b82d96a5340519c444e0720fa78 (
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
|
/**
* @file llclassifiedinfo.h
* @brief LLClassifiedInfo class definition
*
* Copyright (c) 2005-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLCLASSIFIEDINFO_H
#define LL_LLCLASSIFIEDINFO_H
#include <map>
#include "v3dmath.h"
#include "lluuid.h"
#include "lluserauth.h"
class LLMessageSystem;
class LLClassifiedInfo
{
public:
LLClassifiedInfo() {}
static void loadCategories(LLUserAuth::options_t event_options);
typedef std::map<U32, std::string> cat_map;
static cat_map sCategories;
};
#endif // LL_LLCLASSIFIEDINFO_H
|