eMotion
 All Classes Functions Variables Enumerations
eMood.h
1 
10 #pragma once
11 
12 #include <vector>
13 
14 #include "eFeeling.h"
15 #include "eHelper.h"
16 
17 class eMood
18 {
19 public:
20 
26  eMood(std::vector<eFeeling*> *feelings);
27  ~eMood(void);
28 
29  std::vector<eFeeling*> * const m_mood;
30 };
eMood(std::vector< eFeeling * > *feelings)
Definition: eMood.cpp:3
Definition: eMood.h:17
std::vector< eFeeling * > *const m_mood
Definition: eMood.h:29