LeviLamina
Loading...
Searching...
No Matches
EnvironmentQueryResponse.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Json { class Value; }
8// clang-format on
9
10namespace Bedrock::Services {
11
12struct EnvironmentQueryResponse {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 EnvironmentQueryResponse& operator=(EnvironmentQueryResponse const&);
23 EnvironmentQueryResponse(EnvironmentQueryResponse const&);
24 EnvironmentQueryResponse();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29#ifdef LL_PLAT_C
30 MCNAPI ::std::string GetDefaultEnvironment() const;
31
32 MCNAPI ::std::string GetPropertyValue(::std::string const& serviceName, ::std::string const& propertyKey) const;
33
34 MCNAPI ::std::map<::std::string, ::std::string> const*
35 GetServiceEnvironmentProperties(::std::string const& serviceName, ::std::string const& environmentName) const;
36#endif
37
38 MCNAPI void fromJsonShared(::Json::Value const& jsonValue);
39
40#ifdef LL_PLAT_C
41 MCNAPI ~EnvironmentQueryResponse();
42#endif
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48#ifdef LL_PLAT_C
49 MCNAPI void $dtor();
50#endif
51 // NOLINTEND
52};
53
54} // namespace Bedrock::Services
Definition Value.h:16
MCAPI void fromJsonShared(::Json::Value const &jsonValue)
Definition Alias.h:14