n/a

Dependents:   Figury

Rectangle.h

Committer:
kch78
Date:
2016-03-22
Revision:
0:f3642f9dd5f6

File content as of revision 0:f3642f9dd5f6:

#ifndef MBED_RECTANGLE_H
#define MBED_RECTANGLE_H
#include "mbed.h"
#include "Shape.h"
#include <string>

class Rectangle : public Shape 
{     
    public:
        Rectangle (float width, float height);
        float getArea();                                
};

#endif