Switch from Nz prefix to namespace Nz

What a huge commit


Former-commit-id: 38ac5eebf70adc1180f571f6006192d28fb99897
This commit is contained in:
Lynix
2015-09-25 19:20:05 +02:00
parent c214251ecf
commit df8da275c4
609 changed files with 68265 additions and 66534 deletions

View File

@@ -10,23 +10,21 @@
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Renderer/Shader.hpp>
class NAZARA_RENDERER_API NzUberShaderInstance
namespace Nz
{
public:
NzUberShaderInstance(const NzShader* shader);
NzUberShaderInstance(const NzUberShaderInstance&) = delete;
NzUberShaderInstance(NzUberShaderInstance&&) = delete;
virtual ~NzUberShaderInstance();
class NAZARA_RENDERER_API UberShaderInstance
{
public:
UberShaderInstance(const Shader* shader);
virtual ~UberShaderInstance();
virtual bool Activate() const = 0;
virtual bool Activate() const = 0;
const NzShader* GetShader() const;
const Shader* GetShader() const;
NzUberShaderInstance& operator=(const NzUberShaderInstance&) = delete;
NzUberShaderInstance& operator=(NzUberShaderInstance&&) = delete;
protected:
NzShaderConstRef m_shader;
};
protected:
ShaderConstRef m_shader;
};
}
#endif // NAZARA_UBERSHADERINSTANCE_HPP