利用LoadInfo存储负荷信息

Signed-off-by: dmy@lab <dmy@lab.lab>
This commit is contained in:
dmy@lab
2015-01-15 21:56:30 +08:00
parent 214c17dd10
commit 230aef6995
6 changed files with 120 additions and 13 deletions

View File

@@ -0,0 +1,29 @@
#include "loadinfo.h"
LoadInfo::LoadInfo()
{
}
LoadInfo::~LoadInfo()
{
}
QString LoadInfo::getLoadName()
{
return this->loadName;
}
QString LoadInfo::getLoadPath()
{
return this->loadPath;
}
void LoadInfo::setLoadName(const QString &name)
{
this->loadName=name;
}
void LoadInfo::setLoadPath(const QString &path)
{
this->loadPath=path;
}