GCC Code Coverage Report


Directory: ./
File: tasks/telnov_transfer_one_all/seq/include/ops_seq.hpp
Date: 2026-01-10 02:40:41
Exec Total Coverage
Lines: 0 2 0.0%
Functions: 0 0 -%
Branches: 0 0 -%

Line Branch Exec Source
1 #pragma once
2
3 #include <vector>
4
5 #include "task/include/task.hpp"
6 #include "telnov_transfer_one_all/common/include/common.hpp"
7
8 namespace telnov_transfer_one_all {
9
10 template <typename T>
11 class TelnovTransferOneAllSEQ : public BaseTask<T> {
12 public:
13 using InType = std::vector<T>;
14 using OutType = InType;
15 static ppc::task::TypeOfTask GetStaticTypeOfTask([[maybe_unused]] bool dummy = false) {
16 return ppc::task::TypeOfTask::kSEQ;
17 }
18 explicit TelnovTransferOneAllSEQ(const InType &in);
19
20 private:
21 bool ValidationImpl() override;
22 bool PreProcessingImpl() override;
23 bool RunImpl() override;
24 bool PostProcessingImpl() override;
25 };
26
27 } // namespace telnov_transfer_one_all
28