![]() |
Ark Server API (ASA) - Wiki
|
#include "CoreTypes.h"#include "Concepts/Insertable.h"#include "Templates/Models.h"#include "Serialization/ArchiveProxy.h"#include "Serialization/StructuredArchiveSlots.h"#include "Templates/UniqueObj.h"
Include dependency graph for StructuredArchiveAdapters.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Classes | |
| class | FStructuredArchiveFromArchive |
| class | FArchiveFromStructuredArchive |
Functions | |
| template<typename T > | |
| TEnableIf<!TModels< CInsertable< FArchive & >, T >::Value &&TModels< CInsertable< FStructuredArchiveSlot >, T >::Value, FArchive & >::Type | operator<< (FArchive &Ar, T &Obj) |
| template<typename T > | |
| TEnableIf< TModels< CInsertable< FArchive & >, T >::Value &&!TModels< CInsertable< FStructuredArchiveSlot >, T >::Value >::Type | operator<< (FStructuredArchiveSlot Slot, T &Obj) |
| TEnableIf<!TModels< CInsertable< FArchive & >, T >::Value &&TModels< CInsertable< FStructuredArchiveSlot >, T >::Value, FArchive & >::Type operator<< | ( | FArchive & | Ar, |
| T & | Obj ) |
Adapter operator which allows a type to stream to an FArchive when it already supports streaming to an FStructuredArchiveSlot.
| Ar | The archive to read from or write to. |
| Obj | The object to read or write. |
Definition at line 127 of file StructuredArchiveAdapters.h.
| TEnableIf< TModels< CInsertable< FArchive & >, T >::Value &&!TModels< CInsertable< FStructuredArchiveSlot >, T >::Value >::Type operator<< | ( | FStructuredArchiveSlot | Slot, |
| T & | Obj ) |
Adapter operator which allows a type to stream to an FStructuredArchiveSlot when it already supports streaming to an FArchive.
| Slot | The slot to read from or write to. |
| Obj | The object to read or write. |
Definition at line 144 of file StructuredArchiveAdapters.h.