template <typename T, typename Param1, typename Param2>
static T * NewObj(
Param1 param1,
Param2 param2
);
| Name | Description |
|---|---|
| T | The class of the object to be created. |
| Param1 | The type of the first argument of the constructor. |
| Param2 | The type of the second argument of the constructor. |
| Name | Description | |
|---|---|---|
| param1 | The first argument of the constructor. | |
| param2 | The second argument of the constructor. |
Creates an object.
CONFIDENTIAL