~ubuntu-branches/ubuntu/lucid/ardour/lucid-proposed

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2008-07-29 11:27:04 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729112704-x1rmgb4tjotjyu5u
Tags: 1:2.5-0ubuntu1
* New upstream release.
* debian/patches/s390-FTBFS.patch: Dropped, as it fails to apply, and
  Ubuntu doesn't concern itself with s390.
* debian/control:
  - Fix package description, thanks to the patch in Debian bug #485892.
  - Metadata cleanup and sync control/control.in files.
  - Add libaubio-dev to Build-Depends.

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)