mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
18 lines
209 B
C++
18 lines
209 B
C++
#ifndef CSM_TOOLS_VERIFIER_H
|
|
#define CSM_TOOLS_VERIFIER_H
|
|
|
|
#include "operation.hpp"
|
|
|
|
namespace CSMTools
|
|
{
|
|
class Verifier : public Operation
|
|
{
|
|
public:
|
|
|
|
Verifier();
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|