Qt 4.8
Public Functions | Public Variables | List of all members
QDBusIntrospection::Argument Class Reference

One argument to a D-Bus method or signal. More...

#include <qdbusintrospection_p.h>

Public Functions

bool operator== (const Argument &other) const
 Compares this object against other and return true if they are the same. More...
 

Public Variables

QString name
 The argument name. More...
 
QString type
 The argument type. More...
 

Detailed Description

One argument to a D-Bus method or signal.

This struct represents one argument passed to a method or received from a method or signal in D-Bus. The struct does not contain information on the direction (input or output).

Definition at line 90 of file qdbusintrospection_p.h.

Functions

◆ operator==()

QDBusIntrospection::Argument::operator== ( const Argument other) const
inline

Compares this object against other and return true if they are the same.

Definition at line 95 of file qdbusintrospection_p.h.

96  { return name == other.name && type == other.type; }
QString type
The argument type.
QString name
The argument name.

Properties

◆ name

QDBusIntrospection::Argument::name

The argument name.

The argument name is optional, so this may be a null QString.

Definition at line 93 of file qdbusintrospection_p.h.

Referenced by operator==(), parseArgs(), QDBusMetaObjectGenerator::parseMethods(), and QDBusMetaObjectGenerator::parseSignals().

◆ type

QDBusIntrospection::Argument::type

The documentation for this class was generated from the following files: