SigningTS/client/buffer.h
author John Kern <johnk@symbian.org>
Wed, 12 May 2010 09:44:30 -0700
changeset 17 cad8819de653
permissions -rw-r--r--
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer

#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