16 lines
295 B
C++
16 lines
295 B
C++
#ifndef DORICSTACKNODE_H
|
|
#define DORICSTACKNODE_H
|
|
|
|
#include "DoricGroupNode.h"
|
|
|
|
class DoricStackNode : public DoricGroupNode {
|
|
public:
|
|
using DoricGroupNode::DoricGroupNode;
|
|
|
|
QQuickItem *build() override;
|
|
|
|
void blendLayoutConfig(QJsonValue jsValue) override;
|
|
};
|
|
|
|
#endif // DORICSTACKNODE_H
|