![]()  | 
  
    Face Engine SDK
    5.17.0
    
   A face detection, recognition and tracking engine. 
   | 
 
Serializable object interface. More...
#include <IObject.h>
  
 Public Types | |
| enum | Error : uint32_t {  Error::Ok, Error::Size, Error::Signature, Error::ArchiveRead, Error::InputArchive, Error::ArchiveWrite }  | 
| Serialization nerror codes.  More... | |
| enum | Flags { Default = 0, NoSignature = 1 } | 
| Serialization flags.  More... | |
Public Member Functions | |
| virtual void | getSize (Sizer &sizer, uint32_t flags=Default) const noexcept=0 | 
| Estimate size of this object binary data.  More... | |
| virtual Result< Error > | load (IArchive *archive, uint32_t flags=Default)=0 | 
| Load object from archive.  More... | |
| virtual Result< Error > | save (IArchive *archive, uint32_t flags=Default) const =0 | 
| Save object to archive.  More... | |
  Public Member Functions inherited from fsdk::IRefCounted | |
| virtual int32_t | retain () noexcept=0 | 
| Increase strong reference count.  More... | |
| virtual int32_t | retainLocked () noexcept=0 | 
| Increase strong reference count thread safely.  More... | |
| virtual int32_t | release () noexcept=0 | 
| Decrease strong reference count.  More... | |
| virtual int32_t | getRefCount () const noexcept=0 | 
| Get actual strong reference count.  More... | |
| virtual int32_t | retainWeak () noexcept=0 | 
| Increase weak reference count.  More... | |
| virtual int32_t | releaseWeak () noexcept=0 | 
| Decrease weak reference count.  More... | |
| virtual int32_t | getWeakRefCount () const noexcept=0 | 
| Get actual weak reference count.  More... | |
Serializable object interface.
Provides common functions for all serializable objects.
      
  | 
  strong | 
Serialization flags.
These flags control advanced options and should not be set to anything else from Default in normal conditions.
      
  | 
  pure virtualnoexcept | 
Estimate size of this object binary data.
| [in,out] | sizer | sizer object to append result to. | 
| [in] | flags | [optional] serialization flags | 
      
  | 
  pure virtual | 
Load object from archive.
| [in] | archive | archive to read from. | 
| [in] | flags | [optional] serialization flags | 
      
  | 
  pure virtual | 
Save object to archive.
| [in] | archive | archive to write to. | 
| [in] | flags | [optional] serialization flags |