sigslotrepeater.h | 36 void reemit() { signal0<mt_policy>::emit(); } function in class:sigslot::repeater0 37 void repeat(base_type &s) { s.connect(this, &this_type::reemit); } 52 void reemit(arg1_type a1) { signal1<arg1_type, mt_policy>::emit(a1); } function in class:sigslot::repeater1 53 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } 68 void reemit(arg1_type a1, arg2_type a2) { signal2<arg1_type, arg2_type, mt_policy>::emit(a1,a2); } function in class:sigslot::repeater2 69 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } 85 void reemit(arg1_type a1, arg2_type a2, arg3_type a3) { function in class:sigslot::repeater3 88 void repeat(base_type& s) { s.connect(this, &this_type::reemit); }
|