n/a

Dependents:   Figury

Square.h

Committer:
kch78
Date:
2016-03-22
Revision:
0:202298a7e6bc
Child:
1:f72e3e1af03d

File content as of revision 0:202298a7e6bc:

#ifndef MBED_SQUARE_H
#define MBED_SQUARE_H
#include "Rectangle.h"
#include "mbed.h"
#include <string>

class Square : public Rectangle
{     
    public:
        Square(float size);
        float getArea();                                       
};

#endif