1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-07 11:56:26 +02:00
Files
uni/ccv/sheet1/basics/Rectangle.h
2017-04-04 15:37:25 +02:00

20 lines
276 B
C++

//
// Created by jim on 4/4/17.
//
#ifndef SHEET1_RECTANGLE_H
#define SHEET1_RECTANGLE_H
class Rectangle
{
private:
unsigned int width;
unsigned int height;
public:
Rectangle(unsigned int, unsigned int);
unsigned int area();
};
#endif //SHEET1_RECTANGLE_H