eMotion
 All Classes Functions Variables Enumerations
eFeeling.h
1 
10 #pragma once
11 
12 #include <string>
13 #include <vector>
14 
15 class eFeeling
16 {
17 public:
18 
25  eFeeling(std::string *name, float value);
26 
30  ~eFeeling(void);
31 
32  std::string * const m_name;
33  float m_value;
34 };
~eFeeling(void)
Definition: eFeeling.cpp:10
Definition: eFeeling.h:15
float m_value
Definition: eFeeling.h:33
std::string *const m_name
Definition: eFeeling.h:32
eFeeling(std::string *name, float value)
Definition: eFeeling.cpp:4