JM9 XRCU Board 0.1.3a
Libraries API Reference
Loading...
Searching...
No Matches
Dimensions.h
1#ifndef DSGC_DIMENSIONS_H
2#define DSGC_DIMENSIONS_H
3
4namespace dsgc {
5 class Dimensions {
6 private:
7 const unsigned int x;
8 const unsigned int y;
9 const unsigned int width;
10 const unsigned int height;
11 protected:
12 Dimensions(unsigned int x, unsigned int y, unsigned int width, unsigned int height);
13 public:
14 unsigned int getX();
15 unsigned int getY();
16 unsigned int getWidth();
17 unsigned int getHeight();
18 };
19}
20
21#endif // #ifndef DSGC_DIMENSIONS_H