XX CMake Package
Loading...
Searching...
No Matches
XXSize.h
Go to the documentation of this file.
1#ifndef XXSizeH
2#define XXSizeH
3
4#include "XXCppExportDef.h"
5
6#include <inttypes.h>
7
8namespace XX
9{
12
14 {
15 uint16_t width;
16 uint16_t height;
17
18 Size(const uint16_t& width = 0, const uint16_t height = 0);
19 Size& operator=(const Size& other);
20
21 bool isZero() const;
22 };
23} // namespace XX
24
25#endif // NOT XXSizeH
#define XXCPP_DECLSPEC
Definition XXCppExportDef.h:23
Definition XXPopulatedAbstract.h:11
uint16_t width
Definition XXSize.h:15
Size & operator=(const Size &other)
uint16_t height
Definition XXSize.h:16
bool isZero() const
Size(const uint16_t &width=0, const uint16_t height=0)