//File: Shape1.cpp #include #include #include #include "shape1.h" using namespace std; //Shape Implementation Shape::Shape():m_name("Basic Shape") {}; Shape::Shape(string name) { m_name = name; } string Shape::name() const { return m_name; } double Shape::area() const { return 0.0; }