ComparatorLibs: Add stringify to hierarchy for easy printing
This commit is contained in:
@@ -42,6 +42,16 @@ public:
|
||||
{
|
||||
return dlopenHandle.get();
|
||||
}
|
||||
|
||||
std::string stringify() const
|
||||
{
|
||||
std::string result = "Library Path: " + libraryPath + "\n";
|
||||
result += "Resolved Path: " + resolvedPath + "\n";
|
||||
result += "Is Being Destroyed: ";
|
||||
result += (isBeingDestroyed.load() ? "true" : "false");
|
||||
result += "\n";
|
||||
return result;
|
||||
}
|
||||
};
|
||||
|
||||
struct Resources
|
||||
|
||||
Reference in New Issue
Block a user