CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
zip_entry_source.h
1#ifndef _aspose_zip_zip_entry_source_h_
2#define _aspose_zip_zip_entry_source_h_
3
4namespace Aspose { namespace Zip {
5
6// An enum that specifies the source of the ZipEntry.
7
8enum class ZipEntrySource
9{
10 None = 0,
11 FileSystem,
12 Stream,
13 ZipFile
14};
15
16}} // namespace Aspose::Zip
17
18#endif // _aspose_zip_zip_entry_source_h_
19
@ Stream
The type that supports reliable, two-way, connection-based byte streams without duplication of data a...