33#ifndef vtkVariantBoostSerialization_h
34#define vtkVariantBoostSerialization_h
43#include <boost/archive/binary_oarchive.hpp>
45#include <boost/serialization/base_object.hpp>
46#include <boost/serialization/export.hpp>
47#include <boost/serialization/extended_type_info_no_rtti.hpp>
48#include <boost/serialization/split_free.hpp>
53template <
typename Archiver>
56 ar& boost::serialization::base_object<std::string>(str);
61template <
typename Archiver>
62void save(Archiver& ar,
const std::string& str,
const unsigned int vtkNotUsed(version))
67template <
typename Archiver>
68void load(Archiver& ar, std::string& str,
const unsigned int vtkNotUsed(version))
79template <
typename Archiver>
80void save(Archiver& ar,
const vtkVariant& variant,
const unsigned int vtkNotUsed(version))
94#define VTK_VARIANT_SAVE(Value, Type, Function) \
97 Type value = variant.Function(); \
118 cerr <<
"cannot serialize variant with type " << variant.
GetType() <<
'\n';
120#undef VTK_VARIANT_SAVE
123template <
typename Archiver>
124void load(Archiver& ar,
vtkVariant& variant,
const unsigned int vtkNotUsed(version))
129#define VTK_VARIANT_LOAD(Value, Type) \
134 variant = vtkVariant(value); \
157 cerr <<
"cannot deserialize variant with type " <<
static_cast<unsigned int>(Type) <<
'\n';
160#undef VTK_VARIANT_LOAD
169template <
typename Archiver>
176 if (array.
GetName() !=
nullptr)
189template <
typename Archiver>
virtual char * GetName()
Set/get array's name.
vtkIdType GetNumberOfTuples() const
Get the number of complete tuples (a component group) in the array.
virtual void SetName(const char *)
Set/get array's name.
Wrapper around std::string to keep symbols short.
An array holding vtkVariants.
void SetNumberOfTuples(vtkIdType number) override
Set the number of tuples (a component group) in the array.
vtkVariant & GetValue(vtkIdType id) const
Get the data at a particular index.
void SetValue(vtkIdType id, vtkVariant value)
Set the data at a particular index.
A atomic type representing the union of many types.
unsigned int GetType() const
Get the type of the variant.
bool IsValid() const
Get whether the variant value is valid.
#define VTK_UNSIGNED_CHAR
#define VTK_UNSIGNED_SHORT
#define VTK_UNSIGNED_LONG
#define VTK_UNSIGNED_LONG_LONG
#define VTK_VARIANT_SAVE(Value, Type, Function)
void serialize(Archiver &ar, vtkStdString &str, const unsigned int vtkNotUsed(version))
#define VTK_VARIANT_LOAD(Value, Type)
void load(Archiver &ar, std::string &str, const unsigned int vtkNotUsed(version))
void save(Archiver &ar, const std::string &str, const unsigned int vtkNotUsed(version))