summaryrefslogtreecommitdiffstats
path: root/qtsoap/examples/easter/easter.h
blob: c2e82c4ec22198ff7221fca59747f7cc33f92395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
// SPDX-License-Identifier: BSD-3-Clause

#ifndef EASTER_H
#define EASTER_H
#include <qtsoap.h>

class Easter : public QObject
{
    Q_OBJECT
public:
    Easter(short year, QObject *parent = 0);

private slots:
    void getResponse(const QtSoapMessage &);

private:
    QtSoapHttpTransport http;
    int year;
};

#endif