EmailScheduler/MailCore.framework/Versions/A/Headers/MCNNTPOperationCallback.h

29 lines
497 B
C
Raw Normal View History

2014-09-13 17:13:32 -05:00
//
// 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
#ifdef __cplusplus
namespace mailcore {
class NNTPOperation;
class NNTPOperationCallback {
public:
virtual void bodyProgress(NNTPOperation * session, unsigned int current, unsigned int maximum) {};
};
}
#endif
#endif