Home · All Classes · Main Classes · Deprecated
Functions

mnotification.cpp File Reference

Include dependency graph for mnotification.cpp:

Go to the source code of this file.

Functions

QDBusArgumentoperator<< (QDBusArgument &argument, const MNotification &notification)
const QDBusArgumentoperator>> (const QDBusArgument &argument, MNotification &notification)

Function Documentation

QDBusArgument& operator<< ( QDBusArgument argument,
const MNotification notification 
)

Definition at line 230 of file mnotification.cpp.

{
    const MNotificationPrivate *d = notification.d_func();
    argument.beginStructure();
    argument << d->id;
    argument << d->groupId;
    argument << d->eventType;
    argument << d->summary;
    argument << d->body;
    argument << d->image;
    argument << d->action;
    argument << d->count;
    argument.endStructure();
    return argument;
}

Here is the call graph for this function:

const QDBusArgument& operator>> ( const QDBusArgument argument,
MNotification notification 
)

Definition at line 246 of file mnotification.cpp.

{
    MNotificationPrivate *d = notification.d_func();
    argument.beginStructure();
    argument >> d->id;
    argument >> d->groupId;
    argument >> d->eventType;
    argument >> d->summary;
    argument >> d->body;
    argument >> d->image;
    argument >> d->action;
    argument >> d->count;
    argument.endStructure();
    return argument;
}

Here is the call graph for this function:


Copyright © 2010 Nokia Corporation Generated on Thu Nov 4 2010 18:14:22 (PDT)
Doxygen 1.7.1
MeeGo Touch