summaryrefslogtreecommitdiff
path: root/indra/newview/lllogchat.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/lllogchat.h')
-rw-r--r--indra/newview/lllogchat.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/indra/newview/lllogchat.h b/indra/newview/lllogchat.h
new file mode 100644
index 0000000000..ac2d710b64
--- /dev/null
+++ b/indra/newview/lllogchat.h
@@ -0,0 +1,21 @@
+/**
+ * @file lllogchat.h
+ * @brief LLFloaterChat class definition
+ *
+ * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+
+#ifndef LL_LLLOGCHAT_H
+#define LL_LLLOGCHAT_H
+
+class LLLogChat
+{
+public:
+ static LLString makeLogFileName(LLString(filename));
+ static void saveHistory(LLString filename, LLString line);
+ static void loadHistory(LLString filename, void (*callback)(LLString,void*),void* userdata);
+};
+
+#endif