blob: b81dbee2d65f1ec8670d8767a338ee4db97af723 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef COMPONENT_H_F0CE4573
#define COMPONENT_H_F0CE4573
class Component {
public:
virtual ~Component() = default;
};
#endif /* end of include guard: COMPONENT_H_F0CE4573 */
|