d06 ex02
This commit is contained in:
14
d06/ex02/headers/Classes.hpp
Normal file
14
d06/ex02/headers/Classes.hpp
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user