mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 11:14:33 +00:00
16 lines
337 B
C++
16 lines
337 B
C++
#include "structs.h"
|
|
|
|
bool LibInfo::operator ==(const LibInfo &other) {
|
|
return platform == other.platform &&
|
|
name == other.name;
|
|
}
|
|
|
|
QString LibInfo::fullPath() {
|
|
return path + "/" + name;
|
|
}
|
|
|
|
bool LibInfo::isValid() const {
|
|
return platform != Platform::UnknownPlatform &&
|
|
name.size() && path.size();
|
|
}
|