You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
688 B
44 lines
688 B
14 years ago
|
|
||
|
/*
|
||
|
* UBSoftwareUpdate.h
|
||
|
*
|
||
|
* Created on: May 29, 2009
|
||
|
* Author: Jerome Marchaud
|
||
|
*/
|
||
|
|
||
|
#include "frameworks/UBVersion.h"
|
||
|
|
||
|
#include "UBSoftwareUpdate.h"
|
||
|
|
||
|
UBSoftwareUpdate::UBSoftwareUpdate()
|
||
|
{
|
||
|
// NOOP
|
||
|
}
|
||
|
|
||
|
UBSoftwareUpdate::UBSoftwareUpdate(UBVersion& version, const QString &downloadUrl)
|
||
|
: mVersion(version)
|
||
|
, mDownloadUrl(downloadUrl)
|
||
|
{
|
||
|
// NOOP
|
||
|
}
|
||
|
|
||
|
UBSoftwareUpdate::~UBSoftwareUpdate()
|
||
|
{
|
||
|
// NOOP
|
||
|
}
|
||
|
|
||
|
UBVersion UBSoftwareUpdate::version() const
|
||
|
{
|
||
|
return mVersion;
|
||
|
}
|
||
|
|
||
|
QString UBSoftwareUpdate::downloadUrl() const
|
||
|
{
|
||
|
return mDownloadUrl;
|
||
|
}
|
||
|
|
||
|
bool UBSoftwareUpdate::operator==(const UBSoftwareUpdate &other) const
|
||
|
{
|
||
|
return version() == other.version();
|
||
|
}
|