Sleeping Wombat Common Library  0.50.0
swCommonLibrary
Dog.h
1 #pragma once
2 
3 #include "Mammal.h"
4 
5 
6 
7 namespace sw
8 {
9 
10 
13 class Dog : public Mammal
14 {
15  RTTR_ENABLE( Mammal );
16  RTTR_REGISTRATION_FRIEND;
17 private:
18 
19  std::string m_race;
20 
21 protected:
22 public:
23  explicit Dog () = default;
24  virtual ~Dog () = default;
25 
26 };
27 
28 
29 
30 } // sw
31 
32 
Base mammal class.
Definition: Mammal.h:14
Definition: Exception.h:11
Dog.
Definition: Dog.h:13