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

    } 
}