| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #include "golovanov_d_bcast/seq/include/ops_seq.hpp" | ||
| 2 | |||
| 3 | #include "golovanov_d_bcast/common/include/common.hpp" | ||
| 4 | // #include "util/include/util.hpp" clang-tidy попросил отключить | ||
| 5 | |||
| 6 | namespace golovanov_d_bcast { | ||
| 7 | |||
| 8 |
1/2✓ Branch 1 taken 16 times.
✗ Branch 2 not taken.
|
16 | GolovanovDBcastSEQ::GolovanovDBcastSEQ(const InType &in) { |
| 9 | SetTypeOfTask(GetStaticTypeOfTask()); | ||
| 10 | GetInput() = in; | ||
| 11 | 16 | GetOutput() = false; | |
| 12 | 16 | } | |
| 13 | |||
| 14 | 16 | bool GolovanovDBcastSEQ::ValidationImpl() { | |
| 15 | 16 | return true; | |
| 16 | } | ||
| 17 | |||
| 18 | 16 | bool GolovanovDBcastSEQ::PreProcessingImpl() { | |
| 19 | 16 | return true; | |
| 20 | } | ||
| 21 | // заглушка | ||
| 22 | 16 | bool GolovanovDBcastSEQ::RunImpl() { | |
| 23 | 16 | GetOutput() = true; | |
| 24 | 16 | return true; | |
| 25 | } | ||
| 26 | |||
| 27 | 16 | bool GolovanovDBcastSEQ::PostProcessingImpl() { | |
| 28 | 16 | return true; | |
| 29 | } | ||
| 30 | |||
| 31 | } // namespace golovanov_d_bcast | ||
| 32 |