14 lines
239 B
C
14 lines
239 B
C
|
#ifndef PROBLEMCASEVALIDATOR_H
|
||
|
#define PROBLEMCASEVALIDATOR_H
|
||
|
|
||
|
#include "ojproblemset.h"
|
||
|
|
||
|
class ProblemCaseValidator
|
||
|
{
|
||
|
public:
|
||
|
ProblemCaseValidator();
|
||
|
bool validate(POJProblemCase problemCase);
|
||
|
};
|
||
|
|
||
|
#endif // PROBLEMCASEVALIDATOR_H
|