Sleeping Wombat Common Library  0.50.0
swCommonLibrary
HomoSapiens.h
1 #pragma once
2 
3 #include "swCommonLib/TestUtils/TestClassHierarchy/Animals/Mammals/Mammal.h"
4 #include "swCommonLib/TestUtils/TestClassHierarchy/Animals/Components/PhysicalProperties.h"
5 
6 
7 
8 namespace sw
9 {
10 
11 
14 class HomoSapiens : public Mammal
15 {
16  RTTR_ENABLE( Mammal );
17  RTTR_REGISTRATION_FRIEND;
18 private:
19 public:
20  explicit HomoSapiens () = default;
21  virtual ~HomoSapiens () = default;
22 
23 };
24 
25 DEFINE_PTR_TYPE( HomoSapiens )
26 
27 
28 } // sw
29 
Base mammal class.
Definition: Mammal.h:14
Definition: Exception.h:11
Class for people.
Definition: HomoSapiens.h:14