//File:	Shape1.cpp
#include <iostream>
#include <string>
#include <cmath>
#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;
}
