blob: e12a1b7579f3788c1378cb721126f755c01e0ee4 (
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
|
//
// MCNNTPOperationCallback.h
// mailcore2
//
// Created by Robert Widmann on 8/13/14.
// Copyright (c) 2014 MailCore. All rights reserved.
//
#ifndef MAILCORE_MCNNTPOPERATIONCALLBACK_H
#define MAILCORE_MCNNTPOPERATIONCALLBACK_H
#include <MailCore/MCUtils.h>
#ifdef __cplusplus
namespace mailcore {
class NNTPOperation;
class MAILCORE_EXPORT NNTPOperationCallback {
public:
virtual void bodyProgress(NNTPOperation * session, unsigned int current, unsigned int maximum) {};
};
}
#endif
#endif
|