This struct is used to store biometric data of a user. More...
#include <yobe_biometric_template.hpp>
Public Member Functions | |
BiometricTemplate (const BiometricTemplate &)=default | |
BiometricTemplate (BiometricTemplate &&) noexcept=default | |
BiometricTemplate & | operator= (const BiometricTemplate &)=default |
BiometricTemplate & | operator= (BiometricTemplate &&) noexcept=default |
virtual bool | IsValid () const =0 |
Determines if the BiometricTemplate object is valid. More... | |
virtual void | Serialize (std::ostream &out_stream) const =0 |
Serializes the BiometricTemplate object. This can be used to save the object for later. More... | |
Static Public Member Functions | |
static std::shared_ptr< BiometricTemplate > | Deserialize (std::istream &in_stream) |
Deserializes the BiometricTemplate object. This can be used to read a saved object from a stream. More... | |
This struct is used to store biometric data of a user.
|
pure virtual |
Determines if the BiometricTemplate object is valid.
|
pure virtual |
Serializes the BiometricTemplate object. This can be used to save the object for later.
out_stream | The stream to which the object will be written. |
|
static |
Deserializes the BiometricTemplate object. This can be used to read a saved object from a stream.
in_stream | The stream from which to read the object. |