Hi, is it possible to to member initialization while using the "Intrusive" Syntax?
Something like the following:
struct my_type {
BEGIN_VISITABLES(my_type);
VISITABLE(int, a, 0);
VISITABLE(float, b, 0.0);
VISITABLE(std::string, c);
END_VISITABLES;
};