#pragma once #include class ElementBufferObject { private: unsigned int _id; public: ElementBufferObject(std::vector indices); inline unsigned int id() const { return _id; } inline void bind() const; inline void unbind() const; };