blob: 610e3bda414323cb44894b9eeaec8af66a432680 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
** Copyright 2003, Double Precision Inc.
**
** See COPYING for distribution information.
*/
#ifndef libmail_smapnoopexpunge_H
#define libmail_smapnoopexpunge_H
#include "libmail_config.h"
#include "mail.H"
#include "smap.H"
#include "smapmsgrange.H"
LIBMAIL_START
class smapNoopExpunge : public smapHandler {
const char *cmd;
smapUidSet uidSet;
bool expungeSet;
const char *getName();
bool existsOrExpungeFlag;
void existsOrExpungeSeen();
public:
smapNoopExpunge(const char *cmd,
mail::callback &callbackArg,
mail::imap &imapAccount);
smapNoopExpunge(const char *cmd,
mail::imap &imapAccount);
smapNoopExpunge(const std::vector<size_t> &messageList,
mail::callback &callbackArg,
mail::imap &imapAccount);
void installed(imap &);
bool ok(std::string);
bool fail(std::string);
~smapNoopExpunge();
};
LIBMAIL_END
#endif
|