n/a
Square.h
- Committer:
- kch78
- Date:
- 2016-03-22
- Revision:
- 1:f72e3e1af03d
- Parent:
- 0:202298a7e6bc
File content as of revision 1:f72e3e1af03d:
#ifndef MBED_SQUARE_H #define MBED_SQUARE_H #include "Rectangle.h" #include "mbed.h" #include <string> class Square : public Rectangle { public: Square(float size); }; #endif