LeviLamina
Loading...
Searching...
No Matches
BuildInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Common {
6
7struct BuildInfo {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::std::string mBuildId;
12 ::std::string mCommitId;
13 ::std::string mBranchId;
14 ::std::string mFlavor;
15 // NOLINTEND
16
17public:
18 // member functions
19 // NOLINTBEGIN
20 MCAPI ~BuildInfo();
21 // NOLINTEND
22
23public:
24 // destructor thunk
25 // NOLINTBEGIN
26 MCFOLD void $dtor();
27 // NOLINTEND
28};
29
30} // namespace Common
Definition BuildInfo.h:7