LeviLamina
Loading...
Searching...
No Matches
ActorMapping.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 ActorMapping& operator=(ActorMapping const&);
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCNAPI ActorMapping(::std::string const& primary, ::std::string const& alt);
25
26 MCNAPI ActorMapping(::std::string const& space, ::std::string const& primary, ::std::string const& alt);
27
28 MCNAPI ~ActorMapping();
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCNAPI void* $ctor(::std::string const& primary, ::std::string const& alt);
35
36 MCNAPI void* $ctor(::std::string const& space, ::std::string const& primary, ::std::string const& alt);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCNAPI void $dtor();
43 // NOLINTEND
44};
Definition ActorMapping.h:5
MCAPI ~ActorMapping()
MCAPI void * $ctor(::std::string const &space, ::std::string const &primary, ::std::string const &alt)
MCAPI void * $ctor(::std::string const &primary, ::std::string const &alt)
MCAPI void $dtor()
MCAPI ActorMapping(::std::string const &space, ::std::string const &primary, ::std::string const &alt)
MCAPI ActorMapping(::std::string const &primary, ::std::string const &alt)
Definition Alias.h:14