#include #include "fix1.hpp" using std::cout; void Shape::draw(RenderTarget& target) { cout << "shape draw\n"; } int main() { RenderTarget target; Shape shape; shape.draw(target); return 0; }