LeviLamina
Loading...
Searching...
No Matches
IFilePicker.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct FileInfo;
8namespace Core { class Path; }
9// clang-format on
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ~IFilePicker() = default;
16
17 virtual void initFilePick(::Core::Path const&, ::std::function<void(bool, ::FileInfo)>) = 0;
18
19 virtual uint64 readBytes(::FileInfo const&, uint64, uint64, ::std::vector<uchar>&) = 0;
20
21 virtual bool writeBytes(::FileInfo const&, uint64, uint64, ::std::vector<uchar> const&) = 0;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29
30public:
31 // vftables
32 // NOLINTBEGIN
33 MCNAPI static void** $vftable();
34 // NOLINTEND
35};
Definition Path.h:10
Definition IFilePicker.h:11
static MCAPI void ** $vftable()
Definition FileInfo.h:10