15 lines
206 B
C++
15 lines
206 B
C++
|
#include "ojproblemset.h"
|
||
|
|
||
|
#include <QUuid>
|
||
|
|
||
|
OJProblemCase::OJProblemCase()
|
||
|
{
|
||
|
QUuid uid = QUuid::createUuid();
|
||
|
id = uid.toString();
|
||
|
}
|
||
|
|
||
|
const QString &OJProblemCase::getId() const
|
||
|
{
|
||
|
return id;
|
||
|
}
|