1
0
mirror of synced 2024-12-04 12:07:57 +01:00
ImHex/tests/include/test_patterns/test_pattern_example.hpp
2021-09-11 23:13:49 +02:00

23 lines
377 B
C++

#pragma once
#include "test_pattern.hpp"
namespace hex::test {
class TestPatternExample : public TestPattern {
public:
TestPatternExample() : TestPattern("") {
}
~TestPatternExample() override = default;
[[nodiscard]]
std::string getSourceCode() const override {
return R"(
)";
}
};
}