aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace/stderr_writer.h
blob: b1375cbd27c1d75e2b8be808e1565d0da83daefe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;
    };

}