summary refs log tree commit diff stats
path: root/src/component.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/component.h')
-rw-r--r--src/component.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/component.h b/src/component.h new file mode 100644 index 0000000..b81dbee --- /dev/null +++ b/src/component.h
@@ -0,0 +1,11 @@
1#ifndef COMPONENT_H_F0CE4573
2#define COMPONENT_H_F0CE4573
3
4class Component {
5public:
6
7 virtual ~Component() = default;
8
9};
10
11#endif /* end of include guard: COMPONENT_H_F0CE4573 */