Specialization of Variant containing an array of non-UTF-8 strings (byte string arrays). More...
#include <glibmm/variant.h>
Public Types | |
typedef std::string | CppType |
typedef std::vector< std::string > | CppContainerType |
Public Member Functions | |
Variant () | |
Default constructor. | |
Variant (GVariant* castitem, bool take_a_reference=false) | |
GVariant constructor. | |
std::string | get (gsize index) const |
Gets a specific element of the string array. | |
std::vector< std::string > | get () const |
Gets the string 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 < std::string > > | create (const std::vector< std::string >& data) |
Creates a new Variant from an array of strings. |
Specialization of Variant containing an array of non-UTF-8 strings (byte string arrays).
typedef std::vector<std::string> Glib::Variant< std::vector< std::string > >::CppContainerType |
typedef std::string Glib::Variant< std::vector< std::string > >::CppType |
Reimplemented from Glib::VariantContainerBase.
Glib::Variant< std::vector< std::string > >::Variant | ( | ) | [inline] |
Default constructor.
Glib::Variant< std::vector< std::string > >::Variant | ( | GVariant< std::vector< std::string > > * | 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). |
static Variant< std::vector<std::string> > Glib::Variant< std::vector< std::string > >::create | ( | const std::vector< std::string > & | data ) | [static] |
std::vector<std::string> Glib::Variant< std::vector< std::string > >::get | ( | ) | const |
std::string Glib::Variant< std::vector< std::string > >::get | ( | gsize | index ) | const |
Gets a specific element of the string 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< std::string > >::get_iter | ( | ) | const |
static const VariantType& Glib::Variant< std::vector< std::string > >::variant_type | ( | ) | [static] |