kill_action.h 317 B

123456789101112131415
  1. #pragma once
  2. #include "probe.h"
  3. namespace NLWTrace {
  4. namespace NPrivate {
  5. class TKillActionExecutor: public IExecutor {
  6. public:
  7. explicit TKillActionExecutor(const TProbe*) {
  8. }
  9. bool DoExecute(TOrbit& orbit, const TParams& params) override;
  10. };
  11. }
  12. }