All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IMaterialProvider.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Rendering.h"
6 #include <string>
7 #include <vector>
8 
9 namespace Eegeo
10 {
11  namespace Rendering
12  {
14  {
15  public:
16  virtual ~IMaterialProvider() {}
17  virtual bool ContainsMaterial(const std::string& materialName) const = 0;
18  virtual Rendering::Materials::IMaterial* GetMaterial(const std::string& materialName) const = 0;
19  virtual std::vector<Rendering::Materials::IMaterial*> GetMaterials() const = 0;
20  };
21  }
22 }