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
19public:
20 // prevent constructor by default
21 FileInfo& operator=(FileInfo const&);
22 FileInfo(FileInfo const&);
23 FileInfo();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCNAPI FileInfo(::Core::Path _filePath, int _fileSize, ::std::string _fileHash);
29
30 MCNAPI ~FileInfo();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCNAPI void* $ctor(::Core::Path _filePath, int _fileSize, ::std::string _fileHash);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCNAPI void $dtor();
43 // NOLINTEND
44};
Definition Path.h:17
Definition Path.h:16
Definition FileInfo.h:10
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