1
0
mirror of synced 2025-02-06 06:04:20 +01:00
ImHex/tests/include/test_patterns/test_pattern_example.hpp

23 lines
377 B
C++
Raw Normal View History

#pragma once
2021-09-11 14:41:18 +02:00
#include "test_pattern.hpp"
namespace hex::test {
2021-09-11 14:41:18 +02:00
class TestPatternExample : public TestPattern {
public:
2021-09-11 23:13:49 +02:00
TestPatternExample() : TestPattern("") {
2021-09-11 14:41:18 +02:00
}
~TestPatternExample() override = default;
[[nodiscard]]
2021-09-11 14:41:18 +02:00
std::string getSourceCode() const override {
return R"(
)";
}
};
}