CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
extract_existing_file_action.h
1#ifndef _aspose_zip_extract_existing_file_action_h_
2#define _aspose_zip_extract_existing_file_action_h_
3
4namespace Aspose { namespace Zip {
5
6// An enum for the options when extracting an entry would overwrite an existing file.
7
8enum class ExtractExistingFileAction
9{
10 Throw,
11 OverwriteSilently,
12 DoNotOverwrite,
13 InvokeExtractProgressEvent
14};
15
16}} // namespace Aspose::Zip
17
18#endif // _aspose_zip_extract_existing_file_action_h_
19