mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-30 03:34:34 +00:00
11 lines
210 B
C++
11 lines
210 B
C++
|
#include "structs.h"
|
||
|
|
||
|
bool LibInfo::operator ==(const LibInfo &other) {
|
||
|
return platform == other.platform &&
|
||
|
name == other.name;
|
||
|
}
|
||
|
|
||
|
QString LibInfo::fullPath() {
|
||
|
return path + "/" + name;
|
||
|
}
|