summaryrefslogtreecommitdiff
path: root/plugins/MirandaG15/src/CIRCHistory.h
blob: 667c1efd264aac6a9d96ce4f6446500ac055c5be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _CIRCHISTORY_H_
#define _CIRCHISTORY_H_

struct SIRCMessage
{
	struct tm Time;
	bool bIsMe;
	tstring strMessage;
};

class CIRCHistory
{
public:
	tstring strChannel;
	tstring strProtocol;
	MCONTACT hContact;
	list<SIRCMessage> LMessages;
	list<tstring> LUsers;
};

#endif