mirror of
https://github.com/supleed2/svd2cpp.git
synced 2024-11-10 02:25:48 +00:00
13 lines
175 B
C++
13 lines
175 B
C++
#ifndef I_BUILDER
|
|
#define I_BUILDER
|
|
|
|
#include <sstream>
|
|
|
|
|
|
struct IBuilder{
|
|
virtual void build(std::stringstream&) const = 0;
|
|
virtual ~IBuilder() = default;
|
|
};
|
|
|
|
#endif
|