Files
easy7zip/CPP/7zip/UI/Console/OpenCallbackConsole.h
Igor Pavlov 173c07e166 4.59 beta
2016-05-28 00:15:56 +01:00

25 lines
483 B
C++
Executable File

// OpenCallbackConsole.h
#ifndef __OPENCALLBACKCONSOLE_H
#define __OPENCALLBACKCONSOLE_H
#include "Common/StdOutStream.h"
#include "../Common/ArchiveOpenCallback.h"
class COpenCallbackConsole: public IOpenCallbackUI
{
public:
INTERFACE_IOpenCallbackUI(;)
CStdOutStream *OutStream;
#ifndef _NO_CRYPTO
bool PasswordIsDefined;
bool PasswordWasAsked;
UString Password;
COpenCallbackConsole(): PasswordIsDefined(false), PasswordWasAsked(false) {}
#endif
};
#endif