1 2 3 4 5 6 7 8 9
#pragma once #include <ostream> #define SOUP_STRINGIFYABLE(T) \ friend ::std::ostream& operator<<(::std::ostream& os, const T& v) \ { \ return os << v.toString(); \ }