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

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

class Population : public QObject
{
    Q_OBJECT
public:
    Population(const QString &country, QObject *parent = 0);

private slots:
    void getResponse();

private:
    QtSoapHttpTransport http;
};

#endif