remove qml & use qwidget

This commit is contained in:
王劲鹏
2019-12-18 17:35:37 +08:00
parent ad04078f88
commit 001eb4a963
6 changed files with 26 additions and 44 deletions

10
doric/shader/layer.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef LAYER_H
#define LAYER_H
#include "QWidget"
class Layer : public QWidget {
};
#endif // LAYER_H

View File

@@ -1,11 +1,10 @@
#ifndef VIEW_NODE_H
#define VIEW_NODE_H
#include <QDebug>
#include "context_holder.h"
using namespace std;
template <typename V>
class SuperNode;
template <class T>
@@ -15,6 +14,7 @@ protected:
T view;
private:
SuperNode *superNode;
QString *id;
public: