1 // OpenCallbackConsole.h 2 3 #ifndef __OPEN_CALLBACK_CONSOLE_H 4 #define __OPEN_CALLBACK_CONSOLE_H 5 6 #include "../../../Common/StdOutStream.h" 7 8 #include "../Common/ArchiveOpenCallback.h" 9 10 class COpenCallbackConsole: public IOpenCallbackUI 11 { 12 public: 13 INTERFACE_IOpenCallbackUI(;) 14 15 CStdOutStream *OutStream; 16 17 #ifndef _NO_CRYPTO 18 bool PasswordIsDefined; 19 bool PasswordWasAsked; 20 UString Password; COpenCallbackConsole()21 COpenCallbackConsole(): PasswordIsDefined(false), PasswordWasAsked(false) {} 22 #endif 23 }; 24 25 #endif 26