11 lines
226 B
C++
11 lines
226 B
C++
#ifndef DORICVIEWNODE_H
|
|
#define DORICVIEWNODE_H
|
|
|
|
#include "../utils/DoricContextHolder.h"
|
|
|
|
class DoricViewNode : public DoricContextHolder {
|
|
public:
|
|
using DoricContextHolder::DoricContextHolder;
|
|
};
|
|
#endif // DORICVIEWNODE_H
|