File: example_1_echoClient.h

package info (click to toggle)
qxmpp 1.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 5,416 kB
  • sloc: cpp: 71,986; xml: 1,314; ansic: 362; sh: 176; makefile: 16
file content (21 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-FileCopyrightText: 2012 Manjeet Dahiya <manjeetdahiya@gmail.com>
//
// SPDX-License-Identifier: LGPL-2.1-or-later

#ifndef ECHOCLIENT_H
#define ECHOCLIENT_H

#include "QXmppClient.h"

class echoClient : public QXmppClient
{
    Q_OBJECT

public:
    echoClient(QObject *parent = nullptr);
    ~echoClient() override;

    void messageReceived(const QXmppMessage &);
};

#endif  // ECHOCLIENT_H