diff options
| author | Melvin Keskin <melvo@olomono.de> | 2022-01-08 08:26:46 +0000 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2022-01-15 14:04:15 +0100 |
| commit | fd11e024a6079be3e0bc62911b6e3070c7553224 (patch) | |
| tree | 199a3d658bc1641259faffd588534788fadb05dd /src/client/QXmppInvokable.h | |
| parent | ee1ea9091f128164f91d29d7a3598d792326c1a7 (diff) | |
| download | qxmpp-fd11e024a6079be3e0bc62911b6e3070c7553224.tar.gz | |
Run 'clang-format' on all files
Diffstat (limited to 'src/client/QXmppInvokable.h')
| -rw-r--r-- | src/client/QXmppInvokable.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/client/QXmppInvokable.h b/src/client/QXmppInvokable.h index d4d6a3d0..f93b8bcc 100644 --- a/src/client/QXmppInvokable.h +++ b/src/client/QXmppInvokable.h @@ -27,27 +27,27 @@ public: ~QXmppInvokable() override; /** - * Execute a method on an object. with a set of arguments. This method is reentrant, and the method - * that is invoked will be done in a thread safe manner. It should be noted that while this method - * is threadsafe and reentrant the side affects of the methods invoked may not be. - */ + * Execute a method on an object. with a set of arguments. This method is reentrant, and the method + * that is invoked will be done in a thread safe manner. It should be noted that while this method + * is threadsafe and reentrant the side affects of the methods invoked may not be. + */ QVariant dispatch(const QByteArray &method, const QList<QVariant> &args = QList<QVariant>()); /** - * Utility method to convert a QList<QVariant> to a list of types for type - * checking. - */ + * Utility method to convert a QList<QVariant> to a list of types for type + * checking. + */ static QList<QByteArray> paramTypes(const QList<QVariant> ¶ms); /** - * Reimplement this method to return a true if the invoking JID is allowed to execute the method. - */ + * Reimplement this method to return a true if the invoking JID is allowed to execute the method. + */ virtual bool isAuthorized(const QString &jid) const = 0; public Q_SLOTS: /** - * This provides a list of interfaces for introspection of the presented interface. - */ + * This provides a list of interfaces for introspection of the presented interface. + */ QStringList interfaces() const; private: |
