This commit is contained in:
hugogogo
2022-03-06 21:50:26 +01:00
parent c705276319
commit 7abaa2a294
4 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef CLASSES_HPP
# define CLASSES_HPP
class Base {
public:
virtual ~Base() {}
};
class A : public Base {};
class B : public Base {};
class C : public Base {};
#endif