Let's take our first example and push it a little further.
Let's say we want our SerializablePerson to hold a wallet class, since our wallet class won't be a primary type nor a c-style array, we won't be able to push the wallet into the SerializedObject by directly calling pushData.
Fortunately, the library provide an handy solution:
#include <string>
public:
SerializableWallet(const std::vector<int>& money, const std::string id_card)
: money(money)
, id_card(id_card)
{
}
~SerializableWallet() = default;
{
}
{
money = obj.
popData<std::vector<int>>();
id_card = obj.
popData<std::string>();
}
std::vector<int> money;
std::string id_card;
};
public:
SerializablePerson(const std::string& name, int age, const SerializableWallet& wallet)
: name(name)
, age(age)
, wallet(wallet)
{
}
~SerializablePerson() = default;
{
}
{
}
std::string name;
int age;
SerializableWallet wallet;
};
int main(void)
{
SerializablePerson person1("David", 32, {{5, 10, 5}, "David"});
SerializablePerson person2("Robert", 45, {{20, 5, 1}, "Robert"});
obj = person1.serialize();
person2.unserialize(obj);
return 0;
}