diff options
Diffstat (limited to 'lib/glRef.hpp')
-rw-r--r-- | lib/glRef.hpp | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/lib/glRef.hpp b/lib/glRef.hpp deleted file mode 100644 index 1ab239d..0000000 --- a/lib/glRef.hpp +++ /dev/null @@ -1,62 +0,0 @@ -#pragma once - -#include <special_members.hpp> -#include <stdexcept> - -template<typename IdType, auto get, auto release, auto... fixed> class glRef { -public: - // cppcheck-suppress redundantPointerOp - template<typename... Args> explicit glRef(Args &&... args) : id {(*get)(fixed..., std::forward<Args>(args)...)} - { - if (!id) { - throw std::runtime_error("Get function failed"); - } - } - - glRef(glRef && other) : id {other.id} - { - other.id = {}; - } - - ~glRef() - { - if (id) { - // cppcheck-suppress redundantPointerOp - (*release)(id); - } - } - - NO_COPY(glRef); - - const auto & - operator=(glRef && other) - { - if (id) { - // cppcheck-suppress redundantPointerOp - (*release)(id); - } - id = other.id; - other.id = {}; - return *this; - } - - auto - operator*() const - { - return id; - } - - auto - operator->() const - { - return id; - } - - operator IdType() const - { - return id; - } - -private: - IdType id; -}; |