aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace/kill_action.h
blob: 14da9ffd502d5febc8dface57865306737707e0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "probe.h"

namespace NLWTrace {
    namespace NPrivate {
        class TKillActionExecutor: public IExecutor {
        public:
            explicit TKillActionExecutor(const TProbe*) {
            }
            bool DoExecute(TOrbit& orbit, const TParams& params) override;
        };

    }
}