CyberEngineMkIII
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CYBModule.cpp
Go to the documentation of this file.
1 #include "CYB.hpp"
3 
5  Implementation::Module(AModuleName)
6 {}
7 
10  FModule(AMove.FModule)
11 {
12  AMove.FModule = nullptr;
13 }
15  FModule = AMove.FModule;
16  AMove.FModule = nullptr;
17  return *this;
18 }
19 //! @endcond
Encompasses a handle on loaded modules.
Definition: CYBModule.hpp:7
Module(const API::String::CStyle &AModuleName)
Constructs a module reference. The module named by ANonSuffixedModuleName will be loaded into the pro...
Win32::HMODULE FModule
The Module handle.
Module & operator=(Module &&AMove) noexcept
See Default Constructors and Destructor.
A basic char contained string.
Definition: CStyleString.hpp:7
Precompiled header for inter-engine operations.
Module(const API::String::CStyle &AModuleName)
Constructs a module reference. The module named by ANonSuffixedModuleName will be loaded into the pro...
Definition: CYBModule.cpp:4