glibmm 2.31.16
Public Types | Public Member Functions | Static Public Member Functions
Glib::Variant< std::vector< std::string > > Class Template Reference

Specialization of Variant containing an array of non-UTF-8 strings (byte string arrays). More...

#include <glibmm/variant.h>

Inheritance diagram for Glib::Variant< std::vector< std::string > >:
Inheritance graph
[legend]

List of all members.

Public Types

typedef std::string CppType
typedef std::vector< std::stringCppContainerType

Public Member Functions

 Variant ()
 Default constructor.
 Variant (GVariant* castitem, bool take_a_reference=false)
 GVariant constructor.
std::string get_child (gsize index) const
 Gets a specific element of the string array.
std::vector< std::stringget () const
 Gets the string vector of the Variant.
VariantIter get_iter () const
 Gets a VariantIter of the Variant.

Static Public Member Functions

static const VariantTypevariant_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.

Detailed Description

template<>
class Glib::Variant< std::vector< std::string > >

Specialization of Variant containing an array of non-UTF-8 strings (byte string arrays).

Since glibmm 2.28:

Member Typedef Documentation

Reimplemented from Glib::VariantContainerBase.


Constructor & Destructor Documentation

Default constructor.

Glib::Variant< std::vector< std::string > >::Variant ( GVariant< std::vector< std::string > > *  castitem,
bool  take_a_reference = false 
) [explicit]

GVariant constructor.

Parameters:
castitemThe GVariant to wrap.
take_a_referenceWhether to take an extra reference of the GVariant or not (not taking one could destroy the GVariant with the wrapper).

Member Function Documentation

static Variant< std::vector<std::string> > Glib::Variant< std::vector< std::string > >::create ( const std::vector< std::string > &  data) [static]

Creates a new Variant from an array of strings.

Parameters:
dataThe array to use for creation.
Returns:
The new Variant.
Since glibmm 2.28:

Gets the string vector of the Variant.

Returns:
The vector.
Since glibmm 2.28:
std::string Glib::Variant< std::vector< std::string > >::get_child ( 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).

Parameters:
indexThe index of the element.
Returns:
The element at index .
Exceptions:
std::out_of_range
Since glibmm 2.28:
VariantIter Glib::Variant< std::vector< std::string > >::get_iter ( ) const

Gets a VariantIter of the Variant.

Returns:
the VaraintIter.
Since glibmm 2.28:
static const VariantType& Glib::Variant< std::vector< std::string > >::variant_type ( ) [static]

Gets the VariantType.

Returns:
The VariantType.
Since glibmm 2.28: