MeshLib C++ Docs
Loading...
Searching...
No Matches
MRSignalCombiners.h
Go to the documentation of this file.
1#pragma once
2
3namespace MR
4{
7
8
11{
12 using result_type = bool;
13
14 template<typename Iter>
15 bool operator()( Iter first, Iter last ) const
16 {
17 while ( first != last )
18 {
19 if ( *first )
20 return true;
21 ++first;
22 }
23 return false;
24 }
25};
26
27}
bool operator()(Iter first, Iter last) const
Definition MRSignalCombiners.h:15
bool result_type
Definition MRSignalCombiners.h:12
only for bindings generation
Definition MRCameraOrientationPlugin.h:8
Pass this as a second template argument to boost::signals2::signal<...> to stop the execution of hand...
Definition MRSignalCombiners.h:11