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/shader/DoricStackNode.h

18 lines
334 B
C
Raw Normal View History

2021-02-09 15:54:22 +08:00
#ifndef DORICSTACKNODE_H
#define DORICSTACKNODE_H
2021-05-18 16:15:28 +08:00
#include "DoricExport.h"
2021-02-09 15:54:22 +08:00
#include "DoricGroupNode.h"
2021-05-18 16:15:28 +08:00
class DORIC_EXPORT DoricStackNode : public DoricGroupNode {
2021-02-09 15:54:22 +08:00
public:
using DoricGroupNode::DoricGroupNode;
2021-02-09 15:54:22 +08:00
QQuickItem *build() override;
2021-02-09 15:54:22 +08:00
2021-04-02 20:47:15 +08:00
void blendLayoutConfig(QJsonValue jsValue) override;
2021-02-09 15:54:22 +08:00
};
#endif // DORICSTACKNODE_H