GCC Code Coverage Report


Directory: ./
File: tasks/barkalova_m_star/common/include/common.hpp
Date: 2026-01-09 01:27:18
Exec Total Coverage
Lines: 0 1 0.0%
Functions: 0 0 -%
Branches: 0 2 0.0%

Line Branch Exec Source
1 #pragma once
2
3 #include <tuple>
4 #include <vector>
5
6 #include "task/include/task.hpp"
7
8 namespace barkalova_m_star {
9 struct StarMessage {
10 int source{}; // Узел-отправитель
11 int dest{}; // Узел-получатель
12 std::vector<int> data;
13 };
14
15 using InType = StarMessage;
16 using OutType = std::vector<int>;
17 using TestType = std::tuple<StarMessage, std::vector<int>>;
18 using BaseTask = ppc::task::Task<InType, OutType>;
19
20 } // namespace barkalova_m_star
21