mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-02-02 02:13:02 -05:00
23 lines
379 B
C++
23 lines
379 B
C++
/*
|
|
* Margins.cpp
|
|
*
|
|
* Created on: 7 mar 2019
|
|
* Author: robert
|
|
*/
|
|
|
|
#include "Margins.hpp"
|
|
|
|
namespace gui {
|
|
|
|
Margins::Margins() : left{0}, top{0}, right{0}, bottom{0} {
|
|
}
|
|
|
|
Margins::Margins( const short left, const short top, const short right, const short bottom ) :
|
|
left{left}, top{top}, right{right}, bottom{bottom} {
|
|
}
|
|
|
|
Margins::~Margins() {
|
|
}
|
|
|
|
} /* namespace gui */
|