21 lines
364 B
C
21 lines
364 B
C
|
#ifndef FLEXLAYOUTCONFIG_H
|
||
|
#define FLEXLAYOUTCONFIG_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QtDebug>
|
||
|
|
||
|
#include "yoga/Yoga.h"
|
||
|
|
||
|
class FlexLayoutConfig : public QObject {
|
||
|
Q_OBJECT
|
||
|
private:
|
||
|
YGConfigRef config;
|
||
|
|
||
|
public:
|
||
|
explicit FlexLayoutConfig(QObject *parent = nullptr);
|
||
|
virtual ~FlexLayoutConfig();
|
||
|
YGConfigRef getConfig() const;
|
||
|
};
|
||
|
|
||
|
#endif // FLEXLAYOUTCONFIG_H
|