mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
14 lines
135 B
C
14 lines
135 B
C
|
#ifndef NODE_H
|
||
|
#define NODE_H
|
||
|
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class Node : public Object {
|
||
|
public:
|
||
|
Node();
|
||
|
~Node();
|
||
|
|
||
|
protected:
|
||
|
};
|
||
|
|
||
|
#endif
|