mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-04 12:33:55 -07:00
--------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de> Co-authored-by: ebbit1q <ebbit1q@gmail.com>
15 lines
No EOL
320 B
C++
15 lines
No EOL
320 B
C++
#include "printing_info.h"
|
|
|
|
#include "../card_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();
|
|
} |