LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : #pragma once 2 : 3 : #include <memory> 4 : #include <functional> 5 : 6 : namespace demo{ namespace pingpong{ 7 : 8 0 : struct ball 9 : { 10 : size_t count = 0; 11 : size_t power = 0; 12 : typedef std::unique_ptr<ball> ptr; 13 : typedef std::function< void(ptr)> handler; 14 : }; 15 : 16 : }} |
![]() |
Generated by: LCOV version 1.10 |