mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
12 lines
107 B
C
12 lines
107 B
C
|
#ifndef OBJECT_H
|
||
|
#define OBJECT_H
|
||
|
|
||
|
class Object {
|
||
|
public:
|
||
|
|
||
|
Object();
|
||
|
virtual ~Object();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|