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

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


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


#endif