blob: b17fc3136ecdd0c2a4889fd025e76ffa874f2a01 (
plain) (
tree)
|
|
#pragma once
#include "probe.h"
namespace NLWTrace {
class TStderrActionExecutor: public IExecutor {
private:
TProbe* const Probe;
public:
explicit TStderrActionExecutor(TProbe* probe)
: Probe(probe)
{
}
bool DoExecute(TOrbit& orbit, const TParams& params) override;
};
}
|