MVault 0.0.1
|
A class for transferring data to the Vault. More...
#include <VaultParamInput.h>
Public Member Functions | |
template<class T > | |
VaultParamInput (const T &data) noexcept | |
A template constructor that accepts a variable to store inside VaultParamInput. | |
std::type_index | GetDataType () const noexcept |
A method for getting the type of saved data. | |
Public Attributes | |
friend | Vault |
Making the Vault class friendly so that it has access to the internal members of the VaultParamInput class. | |
friend | VaultRecordRef |
Making the VaultRecordRef class friendly so that it has access to the internal members of the VaultParamInput class. | |
A class for transferring data to the Vault.
It is used for multiple data additions when creating a record in Vault and for multiple data changes when setting data in VaultRecordRef
A template constructor that accepts a variable to store inside VaultParamInput.
<T> | Any type of data except for c arrays |
[in] | data | data to be stored inside VaultParamInput |
|
noexcept |
A method for getting the type of saved data.