eMotion
 All Classes Functions Variables Enumerations
In_Feelings.h
1 
11 #pragma once
12 #include <string>
13 #include <vector>
14 
15 #include "B_eInputData.h"
16 #include "Out_Feelings.h"
17 class In_Feelings :
18  public B_eInputData<Out_Feelings>
19 {
20 public:
21  In_Feelings(void);
22  ~In_Feelings(void);
23 
32  bool translateFeels(std::vector<std::string*> *names, float min, float max );
33 };
34 
Definition: B_eInputData.h:13
bool translateFeels(std::vector< std::string * > *names, float min, float max)
Definition: In_Feelings.cpp:14
Definition: In_Feelings.h:17