complete context init & build

This commit is contained in:
王劲鹏
2021-02-02 20:42:37 +08:00
committed by osborn
parent 3b72ab56aa
commit fb4df95d0a
27 changed files with 274 additions and 28 deletions

View File

@@ -0,0 +1,6 @@
#include "root_node.h"
RootNode::RootNode()
{
}

View File

@@ -0,0 +1,10 @@
#ifndef ROOTNODE_H
#define ROOTNODE_H
class RootNode
{
public:
RootNode();
};
#endif // ROOTNODE_H