Multi diag tools
|
Holds informations about a RPATH. More...
#include <RPathInfo.h>
Public Member Functions | |
RPathInfo (const QString &path, bool relative) | |
Construct a RPathInfo. | |
RPathInfo (const RPathInfo &other)=default | |
Copy contruct a RPathInfo from other. | |
RPathInfo & | operator= (const RPathInfo &other)=default |
Copy assign other to this RPathInfo. | |
RPathInfo (RPathInfo &&other)=default | |
Move contruct a RPathInfo from other. | |
RPathInfo & | operator= (RPathInfo &&other)=default |
Move assign other to this RPathInfo. | |
QString | path () const |
Get path. More... | |
bool | isRelative () const |
Check if this RPath is relative. | |
bool | isEmpty () const |
Check if this RPATH is empty. | |
bool | isOrigin () const |
Check if this RPATH is origin. More... | |
QString | toStringLinux () const |
Get a string representing this path. More... | |
Holds informations about a RPATH.
Definition at line 31 of file RPathInfo.h.
|
inline |
Check if this RPATH is origin.
Returns true if this RPATH refers to the directory where the executable or the shared library lives.
On Linux, such RPATH is $ORIGIN .
Definition at line 103 of file RPathInfo.h.
|
inline |
Get path.
Definition at line 70 of file RPathInfo.h.
QString Mdt::DeployUtils::RPathInfo::toStringLinux | ( | ) | const |
Get a string representing this path.
If this path is relative, the string will contains $ORIGIN followed by the path.
Definition at line 28 of file RPathInfo.cpp.