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 // prevent constructor by default
20 DevServer& operator=(DevServer const&);
21 DevServer(DevServer const&);
22 DevServer();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI ::OreUI::DevServer& operator=(::OreUI::DevServer&&);
28
29 MCAPI ~DevServer();
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCAPI void $dtor();
36 // NOLINTEND
37};
38
39} // namespace OreUI
Definition DevServer.h:7