Cockatrice/libcockatrice_card/libcockatrice/card/printing/printing_info.cpp
2025-10-09 23:09:20 +02:00

15 lines
No EOL
315 B
C++

#include "printing_info.h"
#include "../set/card_set.h"
PrintingInfo::PrintingInfo(const CardSetPtr &_set) : set(_set)
{
}
/**
* Gets the uuid property of the printing, or an empty string if the property isn't present
*/
QString PrintingInfo::getUuid() const
{
return properties.value("uuid").toString();
}