~ubuntu-branches/ubuntu/vivid/akonadi/vivid

« back to all changes in this revision

Viewing changes to libs/notificationmessagev2_p.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-07-18 15:38:49 UTC
  • mfrom: (1.1.52)
  • Revision ID: package-import@ubuntu.com-20140718153849-mrt24e3jsxxikq7m
Tags: 1.12.91-0ubuntu1
* New upstream release needed for KDE 4.13.90 beta 2
* Remove patches applied upstream.
* Update symbols with batchpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
 
97
97
    NotificationMessageV2 &operator=( const NotificationMessageV2 &other );
98
98
    bool operator==( const NotificationMessageV2 &other ) const;
 
99
    bool operator!=( const NotificationMessageV2 &other ) const
 
100
    {
 
101
        return !operator==(other);
 
102
    }
99
103
 
100
104
    static void registerDBusTypes();
101
105
 
 
106
    bool isValid() const;
 
107
 
102
108
    NotificationMessageV2::Type type() const;
103
109
    void setType( NotificationMessageV2::Type type );
104
110
 
113
119
    QMap<Id, NotificationMessageV2::Entity> entities() const;
114
120
    NotificationMessageV2::Entity entity( Id id ) const;
115
121
    QList<Id> uids() const;
 
122
    void clearEntities();
116
123
 
117
124
    QByteArray resource() const;
118
125
    void setResource( const QByteArray &resource );
155
162
 
156
163
} // namespace Akonadi
157
164
 
 
165
AKONADIPROTOCOLINTERNALS_EXPORT QDebug operator<<( QDebug debug, const Akonadi::NotificationMessageV2::Entity &entity );
 
166
 
158
167
const QDBusArgument &operator>>( const QDBusArgument &arg, Akonadi::NotificationMessageV2 &msg );
159
168
QDBusArgument &operator<<( QDBusArgument &arg, const Akonadi::NotificationMessageV2 &msg );
160
169
const QDBusArgument &operator>>( const QDBusArgument &arg, Akonadi::NotificationMessageV2::Entity &item );