Shape.h,cc
Triangle.h,cc
Square.h,cc
Rectangle.h,cc
ShapeFactory.h,cc
testShapeFactory.cc  : geometric shapes with a common interface

to compile:

c++ -Wall -o testShapeFactory testShapeFactory.cc \
             ShapeFactory.cc Shape.cc Triangle.cc Rectangle.cc Square.cc
