#pragma once #include "shader.h" #include namespace gfx { class Program { GLuint _program_id; public: Program(); Program(const Program&& other) = delete; Program(Program&& other); ~Program(); void attach(Shader& shader); void link(); void use(); GLuint program_id(); }; }