diff options
Diffstat (limited to 'src/variant.cpp')
| -rw-r--r-- | src/variant.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/variant.cpp b/src/variant.cpp deleted file mode 100644 index 54e484e..0000000 --- a/src/variant.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "variant.hpp" - -namespace wanda { - -variant::variant(GVariant * value) : m_value{value} { } - -variant::~variant() { - if(m_value) { - g_variant_unref(m_value); - } -} - -bool variant::is_of_type(GVariantType const * const type) const { - return g_variant_is_of_type(m_value, type); -} - -}
\ No newline at end of file |
