代码拉取完成,页面将自动刷新
#ifndef SESSION_H
#define SESSION_H
#include <QObject>
#include <QHash>
#define HTTP_URL QString("http://61.185.224.60:8000")
class Session : public QObject
{
Q_OBJECT
public:
~Session();
public:
static Session* Instance();
void setFileIp(QString ip)
{
fileIp_ = ip;
}
QString getFileIp()
{
return fileIp_;
}
void setFilePort(int port)
{
filePort_ = port;
}
int getFilePort()
{
return filePort_;
}
void setHostName(QString name)
{
hostname_ = name;
}
QString getHostName()
{
return hostname_;
}
void setHostIp(QString ip)
{
hostip_ = ip;
}
QString getHostIp()
{
return hostip_;
}
void setHostPort( int port )
{
hostport_ = port;
}
int getHostPort()
{
return hostport_;
}
void setJID(QString jid)
{
jid_ = jid;
}
QString getJID()
{
return jid_;
}
void setDCode(QString app,QString code)
{
dcodes_[app] = code;
}
QString getCode(QString app)
{
return dcodes_[app];
}
QString getURL();
signals:
public slots:
private:
explicit Session(QObject *parent = 0);
static Session * m_instance;
QString hostname_;
QString hostip_;
int hostport_;
QString jid_;
QString fileIp_;
int filePort_;
QHash<QString,QString> dcodes_;
};
#endif // SESSION_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。