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