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

23 lines
403 B
C
Raw Normal View History

2021-03-01 16:24:40 +08:00
#ifndef FLEXLAYOUTCONFIG_H
#define FLEXLAYOUTCONFIG_H
#include <QObject>
#include <QtDebug>
2021-05-18 16:15:28 +08:00
#include "DoricExport.h"
2021-03-01 16:24:40 +08:00
#include "yoga/Yoga.h"
2021-05-18 16:15:28 +08:00
class DORIC_EXPORT FlexLayoutConfig : public QObject {
2021-03-01 16:24:40 +08:00
Q_OBJECT
private:
YGConfigRef config;
public:
explicit FlexLayoutConfig(QObject *parent = nullptr);
virtual ~FlexLayoutConfig();
YGConfigRef getConfig() const;
};
#endif // FLEXLAYOUTCONFIG_H