[go: up one dir, main page]

Menu

[97a570]: / src / msgid.h  Maximize  Restore  History

Download this file

30 lines (25 with data), 655 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef __MAILSYNC_MSGID__
#include <string>
#include "c-client-header.h"
#include "options.h"
using namespace std;
//////////////////////////////////////////////////////////////////////////
//
class MsgId : public string
//
// MsgId - can contain various identificators for messages
//
//////////////////////////////////////////////////////////////////////////
{
public:
MsgId(): string() {};
MsgId(char* m): string(m) {};
MsgId(string m): string(m) {};
MsgId(ENVELOPE *envelope);
void sanitize_message_id();
string to_msinfo_format();
string from_msinfo_format();
bool empty();
};
#define __MAILSYNC_MSGID__
#endif