aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace/stderr_writer.h
blob: b17fc3136ecdd0c2a4889fd025e76ffa874f2a01 (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;
    };

}