class serializer

Overview

serializer helper to test serialize(…) and deserialize(…) functions

#include <utils.h>

class serializer
{
public:
    // methods

    template <class T>
    void operator () (const T& val);

    std::string str() const;
};