I use boost::json library to generate json string, but with 3rd party type, BOOST_DESCRIBE_CLASS can't understand. I can use friend function for classes that use 3rd party styles but it is too much. any idea to handle 1 time only and use everywhere? Example:
class CTest
{
public:
Imath::V3d v;
BOOST_DESCRIBE_CLASS(CTest, (), (v), (), ())
};
I had to guess, so I initially set out to work on a generic transformation function.
You would indeed use
tag_invoke
:Here it is in demonstration:
Live On Coliru
Prints
Third Party Types
Third-party types can be transformed in just the same way. Let's imagine a third-party header contains stuff like:
You can't edit the header. But you can add this in your own file after including that:
Now the output becomes:
Live On Coliru
Printing: