EmailScheduler/MailCore.framework/Versions/A/Headers/MCPOPOperationCallback.h
2014-09-13 17:13:32 -05:00

29 lines
492 B
C++

//
// MCPOPOperationCallback.h
// mailcore2
//
// Created by DINH Viêt Hoà on 1/16/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef MAILCORE_MCPOPOPERATIONCALLBACK_H
#define MAILCORE_MCPOPOPERATIONCALLBACK_H
#ifdef __cplusplus
namespace mailcore {
class POPOperation;
class POPOperationCallback {
public:
virtual void bodyProgress(POPOperation * session, unsigned int current, unsigned int maximum) {};
};
}
#endif
#endif