Przykład tworzenia klas, też funkcji wirtualnej w klasie-bazie.
Shape.h
- Committer:
- kch78
- Date:
- 2016-03-22
- Revision:
- 0:f66cecb955ba
File content as of revision 0:f66cecb955ba:
#ifndef MBED_SHAPE_H #define MBED_SHAPE_H #include "mbed.h" #include <string> class Shape { public: float width; float height; virtual float getArea() {}; }; #endif