glibmm 2.28.1
|
Specialization of Variant containing an array of items. More...
#include <glibmm/variant.h>
Public Types | |
typedef T | CppType |
typedef std::vector< T > | CppContainerType |
Public Member Functions | |
Variant () | |
Default constructor. | |
Variant (GVariant* castitem, bool take_a_reference=false) | |
GVariant constructor. | |
T | get_child (gsize index) const |
Gets a specific element of the array. | |
std::vector< T > | get () const |
Gets the vector of the Variant. | |
VariantIter | get_iter () const |
Gets a VariantIter of the Variant. | |
Static Public Member Functions | |
static const VariantType& | variant_type () |
Gets the VariantType. | |
static Variant< std::vector< T > > | create (const std::vector< T >& data) |
Creates a new Variant from an array of numeric types. |
Specialization of Variant containing an array of items.
typedef std::vector<T> Glib::Variant< std::vector< T > >::CppContainerType |
typedef T Glib::Variant< std::vector< T > >::CppType |
Reimplemented from Glib::VariantContainerBase.
Glib::Variant< std::vector< T > >::Variant | ( | ) | [inline] |
Default constructor.
Glib::Variant< std::vector< T > >::Variant | ( | GVariant< std::vector< T > > * | castitem, |
bool | take_a_reference = false |
||
) | [inline, explicit] |
GVariant constructor.
castitem | The GVariant to wrap. |
take_a_reference | Whether to take an extra reference of the GVariant or not (not taking one could destroy the GVariant with the wrapper). |
Variant< std::vector< T > > Glib::Variant< std::vector< T > >::create | ( | const std::vector< T > & | data | ) | [static] |
std::vector< T > Glib::Variant< std::vector< T > >::get | ( | ) | const |
T Glib::Variant< std::vector< T > >::get_child | ( | gsize | index | ) | const |
Gets a specific element of the array.
It is an error if index is greater than the number of child items in the container. See VariantContainerBase::get_n_children().
This function is O(1).
index | The index of the element. |
std::out_of_range |
VariantIter Glib::Variant< std::vector< T > >::get_iter | ( | ) | const |
const VariantType& Glib::Variant< std::vector< T > >::variant_type | ( | ) | [static] |