rcpp_framework/core/nodes/node.h

14 lines
135 B
C++

#ifndef NODE_H
#define NODE_H
#include "core/object.h"
class Node : public Object {
public:
Node();
~Node();
protected:
};
#endif