mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
13 lines
251 B
C++
13 lines
251 B
C++
#pragma once
|
|
|
|
#include "crypto/block/block-auto.h"
|
|
|
|
namespace test::fisherman {
|
|
|
|
class BaseManipulator {
|
|
public:
|
|
virtual void modify(block::gen::Block::Record &block) = 0;
|
|
virtual ~BaseManipulator() = default;
|
|
};
|
|
|
|
} // namespace test::fisherman
|