QtNovelUI/libParse/parsechecks.h

48 lines
553 B
C
Raw Normal View History

2022-12-08 19:43:42 +00:00
#ifndef PARSECHECKS_H
#define PARSECHECKS_H
#include "libParse.h"
namespace CheckTools {
/**
* @brief
*/
class FragmentsCheck
{
public:
FragmentsCheck(Parse::Result::ParseCore *const core);
/**
* @brief
* @param reasons
* @return
*/
bool check(QList<Parse::ErrorMessage> &reasons) const;
private:
Parse::Result::ParseCore *const core_ins;
};
}
#endif // PARSECHECKS_H