#pragma once #include namespace glbinding { /** * @brief * The AbstractValue class represents the superclass of a printable wrapper around an OpenGL data type. * * This class and its subclasses Value are mainly used when callbacks of OpenGL functions are used. */ class GLBINDING_API AbstractValue { public: /** * @brief * Constructor */ AbstractValue(); /** * @brief * Destructor for correct memory deallocation on subclasses */ virtual ~AbstractValue(); }; } // namespace glbinding