17#ifndef __LOCO_IR_PADDING2D_H__
18#define __LOCO_IR_PADDING2D_H__
28 Padding2D() : _top{0}, _bottom{0}, _left{0}, _right{0}
41 uint32_t
top(
void)
const {
return _top; }
42 void top(uint32_t value) { _top = value; }
45 uint32_t
bottom(
void)
const {
return _bottom; }
46 void bottom(uint32_t value) { _bottom = value; }
49 uint32_t
left(
void)
const {
return _left; }
50 void left(uint32_t value) { _left = value; }
53 uint32_t
right(
void)
const {
return _right; }
54 void right(uint32_t value) { _right = value; }
uint32_t left(void) const
void left(uint32_t value)
Padding2D(uint32_t top, uint32_t bottom, uint32_t left, uint32_t right)
uint32_t bottom(void) const
uint32_t right(void) const
void bottom(uint32_t value)
void right(uint32_t value)