summaryrefslogtreecommitdiff
path: root/indra/llcommon/llcommon.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon/llcommon.h')
-rw-r--r--indra/llcommon/llcommon.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/indra/llcommon/llcommon.h b/indra/llcommon/llcommon.h
new file mode 100644
index 0000000000..c37d479ba9
--- /dev/null
+++ b/indra/llcommon/llcommon.h
@@ -0,0 +1,28 @@
+/**
+ * @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 "llworkerthread.h"
+#include "llfile.h"
+
+class LLCommon
+{
+public:
+ static void initClass();
+ static void cleanupClass();
+private:
+ static BOOL sAprInitialized;
+};
+
+#endif
+