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

16 lines
295 B
C
Raw Normal View History

2021-02-09 15:54:22 +08:00
#ifndef DORICSTACKNODE_H
#define DORICSTACKNODE_H
#include "DoricGroupNode.h"
class 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