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
2021-05-20 18:27:45 +08:00

23 lines
403 B
C++

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