aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCOperationCallback.h
blob: 7507d413e3df74541aa70060accb919cb10f35f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __MAILCORE_MCOPERATIONCALLBACK_H_

#define __MAILCORE_MCOPERATIONCALLBACK_H_

#ifdef __cplusplus

namespace mailcore {
	
	class Operation;
	
	class OperationCallback {
	public:
		virtual void operationFinished(Operation * op) {}
	};
	
}

#endif

#endif