ModuleBase Class
In this article
Supports the WRL infrastructure and is not intended to be used directly from your code.
class ModuleBase;
Represents the base class of the Module classes.
Name | Description |
---|---|
ModuleBase::ModuleBase | Initializes an instance of the Module class. |
ModuleBase::~ModuleBase | Deinitializes the current instance of the Module class. |
Name | Description |
---|---|
ModuleBase::DecrementObjectCount | When implemented, decrements the number of objects tracked by the module. |
ModuleBase::IncrementObjectCount | When implemented, increments the number of objects tracked by the module. |
ModuleBase
Header: implements.h
Namespace: Microsoft::WRL::Details
Supports the WRL infrastructure and is not intended to be used directly from your code.
virtual ~ModuleBase();
Deinitializes the current instance of the ModuleBase
class.
Supports the WRL infrastructure and is not intended to be used directly from your code.
virtual long DecrementObjectCount() = 0;
The count before the decrement operation.
When implemented, decrements the number of objects tracked by the module.
Supports the WRL infrastructure and is not intended to be used directly from your code.
virtual long IncrementObjectCount() = 0;
The count before the increment operation.
When implemented, increments the number of objects tracked by the module.
Supports the WRL infrastructure and is not intended to be used directly from your code.
ModuleBase();
Initializes an instance of the Module
class.