summaryrefslogtreecommitdiff
path: root/indra/newview/lllogchat.h
blob: ac2d710b6422f4f4cb04b7c562c7a98b80f0a893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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