Ocular Engine
ResourceMetadata.hpp
1 
17 #pragma once
18 #ifndef __H__OCULAR_CORE_RESOURCE_METADATA__H__
19 #define __H__OCULAR_CORE_RESOURCE_METADATA__H__
20 
21 #include <string>
22 
23 //------------------------------------------------------------------------------------------
24 
29 namespace Ocular
30 {
35  namespace Core
36  {
45  {
46  public:
47 
48  ResourceMetadata(std::string const& type);
50 
51  virtual void ointernal();
52 
53  std::string const& getType() const;
54 
55  protected:
56 
57  private:
58 
59  std::string m_Type;
60  };
61  }
65 }
70 //------------------------------------------------------------------------------------------
71 
72 #endif
73 
Note: Once this library is made dynamic, this will no longer be needed.
Definition: Common.hpp:70
Definition: ResourceMetadata.hpp:44