LeviLamina
Loading...
Searching...
No Matches
FileInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class Path; }
8// clang-format on
9
10struct FileInfo {
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19#ifdef LL_PLAT_S
20public:
21 // prevent constructor by default
22 FileInfo& operator=(FileInfo const&);
23 FileInfo(FileInfo const&);
24 FileInfo();
25
26#else // LL_PLAT_C
27public:
28 // prevent constructor by default
29 FileInfo& operator=(FileInfo const&);
30 FileInfo();
31
32#endif
33public:
34 // member functions
35 // NOLINTBEGIN
36#ifdef LL_PLAT_C
37 MCNAPI FileInfo(::FileInfo const&);
38#endif
39
40 MCNAPI FileInfo(::Core::Path _filePath, int _fileSize, ::std::string _fileHash);
41
42#ifdef LL_PLAT_C
43 MCNAPI ::FileInfo& operator=(::FileInfo&&);
44#endif
45
46 MCNAPI ~FileInfo();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI void* $ctor(::FileInfo const&);
54#endif
55
56 MCNAPI void* $ctor(::Core::Path _filePath, int _fileSize, ::std::string _fileHash);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64};
Definition Path.h:12
MCAPI void $dtor()
MCAPI FileInfo(::Core::Path _filePath, int _fileSize, ::std::string _fileHash)
MCAPI ~FileInfo()
MCAPI void * $ctor(::Core::Path _filePath, int _fileSize, ::std::string _fileHash)
Definition Alias.h:14