#ifndef I_BUILDER #define I_BUILDER #include struct IBuilder{ virtual void build(std::stringstream&) = 0; virtual ~IBuilder() = default; }; #endif