19 lines
336 B
C++
19 lines
336 B
C++
#include "Spacer.h"
|
|
#include "Control.h"
|
|
namespace ezui {
|
|
|
|
Spacer::Spacer() {
|
|
this->SetHitTestVisible(false);
|
|
};
|
|
Spacer::~Spacer() {};
|
|
|
|
VSpacer::~VSpacer() {};
|
|
VSpacer::VSpacer(int fixedHeight) {
|
|
SetFixedHeight(fixedHeight);
|
|
}
|
|
|
|
HSpacer::~HSpacer() {};
|
|
HSpacer::HSpacer(int fixedWidth) {
|
|
SetFixedWidth(fixedWidth);
|
|
}
|
|
}; |