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/shader/view_node.h
2019-12-17 17:05:57 +08:00

25 lines
336 B
C++

#ifndef VIEW_NODE_H
#define VIEW_NODE_H
#include "context_holder.h"
using namespace std;
template <typename V>
class SuperNode;
template <class T>
class ViewNode : public ContextHolder {
protected:
T view;
private:
QString *id;
public:
ViewNode(Context *context) : ContextHolder(context) {}
};
#endif // VIEW_NODE_H