SigningTS/client/buffer.h
author Sebastian Brannstrom <sebastianb@symbian.org>
Mon, 09 Aug 2010 17:16:20 +0100
changeset 21 3bfc3227045d
parent 17 cad8819de653
permissions -rw-r--r--
CSV reader works, kind of. contacts.csv file added to project, must live in c:\ at the moment

#ifndef BUFFER_H
#define BUFFER_H

#include <QObject>

class QNetworkReply;

class Buffer : public QObject
{
Q_OBJECT
public:
    explicit Buffer(QObject *parent = 0);

signals:

public slots:
    void replyFinished(QNetworkReply *reply);

};

#endif // BUFFER_H