LeviLamina
Loading...
Searching...
No Matches
DiscoveryHelper.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/IAsyncResult.h"
7#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Bedrock::Services { struct DiscoveryConfig; }
12// clang-format on
13
14namespace Bedrock::Services {
15
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 DiscoveryHelper& operator=(DiscoveryHelper const&);
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~DiscoveryHelper() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCNAPI explicit DiscoveryHelper(::Bedrock::Services::DiscoveryConfig const& discoveryConfig);
42
43 MCNAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult<::std::string>>
44 getURL(::std::string const& serviceName);
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCNAPI void* $ctor(::Bedrock::Services::DiscoveryConfig const& discoveryConfig);
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
59
60} // namespace Bedrock::Services
Definition EnableNonOwnerReferences.h:7
Definition DiscoveryHelper.h:16
static MCAPI void ** $vftable()
MCAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult<::std::string > > getURL(::std::string const &serviceName)
MCAPI DiscoveryHelper(::Bedrock::Services::DiscoveryConfig const &discoveryConfig)
MCAPI void * $ctor(::Bedrock::Services::DiscoveryConfig const &discoveryConfig)
Definition DiscoveryConfig.h:7
Definition DiscoveryConfig.h:5
Definition Alias.h:14