summaryrefslogtreecommitdiff
path: root/indra/llcommon/llcommon.h
blob: e7fb5b84e4732bafed25b3477ab7f9df65d797ee (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
/** 
 * @file llcommon.h
 *
 * Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

#ifndef LL_COMMON_H
#define LL_COMMON_H

#include "llmemory.h"
#include "llapr.h"
// #include "llframecallbackmanager.h"
#include "lltimer.h"
#include "llfile.h"

class LLCommon
{
public:
	static void initClass();
	static void cleanupClass();
private:
	static BOOL sAprInitialized;
};

#endif