Files
MuditaOS/module-gui/gui/widgets/Margins.cpp
Robert Borzecki d3235d54d7 Removed submodule
2019-05-21 23:35:00 +02:00

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 */