LeviLamina
Loading...
Searching...
No Matches
EncryptedZipTransforms.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/file_system/FileAccessTransforms.h"
7
8class EncryptedZipTransforms : public ::FileAccessTransforms {
9public:
10 // member variables
11 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 EncryptedZipTransforms& operator=(EncryptedZipTransforms const&);
18 EncryptedZipTransforms(EncryptedZipTransforms const&);
19 EncryptedZipTransforms();
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual bool readTransform(::std::vector<uchar>& stream) const /*override*/;
25
26 virtual bool writeTransform(::std::vector<uchar>& stream) const /*override*/;
27
28 virtual ~EncryptedZipTransforms() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCNAPI bool $readTransform(::std::vector<uchar>& stream) const;
35
36 MCNAPI bool $writeTransform(::std::vector<uchar>& stream) const;
37
38
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCNAPI static void** $vftable();
45 // NOLINTEND
46};
MCAPI bool $writeTransform(::std::vector< uchar > &stream) const
MCAPI bool $readTransform(::std::vector< uchar > &stream) const
static MCAPI void ** $vftable()
Definition FileAccessTransforms.h:5
Definition Alias.h:14