~ubuntu-branches/ubuntu/wily/libsigc++-2.0/wily-proposed

« back to all changes in this revision

Viewing changes to sigc++/adaptors/lambda/group.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Burrows
  • Date: 2005-07-10 14:34:54 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050710143454-1lickjxb8hzzupx7
Tags: 2.0.10-3
Fix dh_makeshlibs call (it WOULD be the one that I didn't check that
needed to be changed; Closes: #317682).

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
  { return func_(value1_()); }
224
224
 
225
225
 
 
226
//template specialization of visit_each<>(action, functor):
226
227
template <class T_action, class T_functor, class T_type1>
227
228
void visit_each(const T_action& _A_action,
228
229
                const lambda_group1<T_functor, T_type1>& _A_target)
434
435
  { return func_(value1_(),value2_()); }
435
436
 
436
437
 
 
438
//template specialization of visit_each<>(action, functor):
437
439
template <class T_action, class T_functor, class T_type1,class T_type2>
438
440
void visit_each(const T_action& _A_action,
439
441
                const lambda_group2<T_functor, T_type1,T_type2>& _A_target)
692
694
  { return func_(value1_(),value2_(),value3_()); }
693
695
 
694
696
 
 
697
//template specialization of visit_each<>(action, functor):
695
698
template <class T_action, class T_functor, class T_type1,class T_type2,class T_type3>
696
699
void visit_each(const T_action& _A_action,
697
700
                const lambda_group3<T_functor, T_type1,T_type2,T_type3>& _A_target)