This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/example/doric/widget/flex/FlexLayoutConfig.h

21 lines
364 B
C
Raw Normal View History

2021-03-01 16:24:40 +08:00
#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