eMotion
 All Classes Functions Variables Enumerations
eObject.h
1 
10 #pragma once
11 
12 #include <string>
13 #include "eHelper.h"
14 
15 class eObject
16 {
17 public:
23  eObject(std::string *identifier);
24  ~eObject(void);
25 
26  std::string * const m_identifier;
27 };
28 
std::string *const m_identifier
Definition: eObject.h:26
eObject(std::string *identifier)
Definition: eObject.cpp:3
Definition: eObject.h:15