10 lines
264 B
C++
10 lines
264 B
C++
#include "FlexLayoutConfig.h"
|
|
|
|
FlexLayoutConfig::FlexLayoutConfig(QObject *parent) : QObject(parent) {
|
|
config = YGConfigNew();
|
|
}
|
|
|
|
FlexLayoutConfig::~FlexLayoutConfig() { YGConfigFree(config); }
|
|
|
|
YGConfigRef FlexLayoutConfig::getConfig() const { return config; }
|