blob: a1bd6a247fe663e2838162a2bd834b97cdcf5bb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* @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 timestamp(bool withdate = false);
static LLString makeLogFileName(LLString(filename));
static void saveHistory(LLString filename, LLString line);
static void loadHistory(LLString filename, void (*callback)(LLString,void*),void* userdata);
};
#endif
|