MCPcopy Create free account
hub / github.com/comaps/comaps / DoDump

Class DoDump

generator/generator_tests/tesselator_test.cpp:11–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9typedef m2::PointD P;
10
11class DoDump
12{
13 size_t & m_count;
14
15public:
16 explicit DoDump(size_t & count) : m_count(count) { m_count = 0; }
17 void operator()(P const & p1, P const & p2, P const & p3)
18 {
19 ++m_count;
20 LOG(LINFO, (p1, p2, p3));
21 }
22};
23
24size_t RunTest(std::list<std::vector<P>> const & l)
25{

Callers 1

RunTestFunction · 0.85

Calls

no outgoing calls

Tested by 1

RunTestFunction · 0.68