All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PODTexture.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include <string>
6 
7 namespace Eegeo
8 {
9  namespace IO
10  {
11  namespace POD
12  {
13  class PODTexture
14  {
15  private:
16  std::string m_name;
17 
18  public:
19  void SetName(std::string &name);
20 
21  std::string GetName() const;
22  };
23  }
24  }
25 }