mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 19:14:56 -06:00
20 lines
492 B
C++
Executable File
20 lines
492 B
C++
Executable File
// UpdateCallbackAgent.h
|
|
|
|
#ifndef __UPDATECALLBACKAGENT_H
|
|
#define __UPDATECALLBACKAGENT_H
|
|
|
|
#include "../Common/UpdateCallback.h"
|
|
#include "IFolderArchive.h"
|
|
|
|
class CUpdateCallbackAgent: public IUpdateCallbackUI
|
|
{
|
|
INTERFACE_IUpdateCallbackUI(;)
|
|
CMyComPtr<ICryptoGetTextPassword2> _cryptoGetTextPassword;
|
|
CMyComPtr<IFolderArchiveUpdateCallback> Callback;
|
|
CMyComPtr<ICompressProgressInfo> _compressProgress;
|
|
public:
|
|
void SetCallback(IFolderArchiveUpdateCallback *callback);
|
|
};
|
|
|
|
#endif
|