MRPT  1.9.9
visit_each_unittest.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
11 #include <mrpt/core/common.h>
12 
13 #include <gtest/gtest.h>
14 
15 int counter = 0;
16 struct Bar1
17 {
18  void foo() { ++counter; }
19 };
20 struct Bar2
21 {
22  void foo() { ++counter; }
23 };
24 
25 TEST(containers_visit_each, call_all)
26 {
27  Bar1 a, b;
28  Bar2 c, d;
29  mrpt::visit_each([&](auto obj) -> void { obj.foo(); }, a, b, c, d);
30  EXPECT_EQ(counter, 4);
31 }
TEST(containers_visit_each, call_all)
int counter
GLsizei GLsizei GLuint * obj
Definition: glext.h:4070
const GLubyte * c
Definition: glext.h:6313
GLubyte GLubyte b
Definition: glext.h:6279
void visit_each(const Visitor &vis, T &&... t)
Definition: visit_each.h:21
GLubyte GLubyte GLubyte a
Definition: glext.h:6279



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 7d5e6d718 Fri Aug 24 01:51:28 2018 +0200 at lun nov 2 08:35:50 CET 2020