Sleeping Wombat Common Library  0.50.0
swCommonLibrary
Zoo.h
1 #pragma once
2 
3 #include "swCommonLib/Common/RTTR.h"
4 
5 #include "swCommonLib/TestUtils/TestClassHierarchy/Animals/Mammals/HomoSapiens.h"
6 
7 namespace sw
8 {
9 
10 
13 class Zoo
14 {
15  RTTR_ENABLE();
16  RTTR_REGISTRATION_FRIEND;
17 public:
18 
19  HomoSapiensPtr m_owner;
20  HomoSapiens* m_director;
21 
22 public:
23 
24  explicit Zoo ()
25  : m_director( nullptr )
26  {}
27 
28 
29 };
30 
31 
32 
33 } // sw
34 
Definition: Exception.h:11
Zoo.
Definition: Zoo.h:13
Class for people.
Definition: HomoSapiens.h:14