Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#ifndef ORTHANCACCESS_HPP
#define ORTHANCACCESS_HPP
#include <QNetworkAccessManager>
#include <QUrl>
namespace orthanc {
class OrthancAccess : public QNetworkAccessManager
{
Q_OBJECT
QUrl prefix;
public:
OrthancAccess(QObject *parent=NULL);
QNetworkReply *get(const QString &request,QObject *requestor);
public slots:
void setPrefix(QString _prefix);
private slots:
// void replyFinished(QNetworkReply *rply);
};
OrthancAccess &access();
}
#endif // ORTHANCACCESS_HPP