LeviLamina
Loading...
Searching...
No Matches
DevServer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace OreUI {
6
7struct DevServer {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 32, ::std::string> mId;
12 ::ll::TypedStorage<8, 32, ::std::string> mHostName;
13 ::ll::TypedStorage<8, 32, ::std::string> mUrl;
14 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mPaths;
15 ::ll::TypedStorage<8, 8, ::std::chrono::steady_clock::time_point> mLastUpdate;
16 // NOLINTEND
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI ~DevServer();
22 // NOLINTEND
23
24public:
25 // destructor thunk
26 // NOLINTBEGIN
27 MCAPI void $dtor();
28 // NOLINTEND
29};
30
31} // namespace OreUI
Definition DevServer.h:7