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

« back to all changes in this revision

Viewing changes to libs/sigc++2/sigc++/adaptors/exception_catch.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:
165
165
    : adapts<T_functor>(_A_func), catcher_(_A_catcher)
166
166
    {}
167
167
 
168
 
  protected: 
169
 
    T_catcher catcher_; 
 
168
  T_catcher catcher_; 
170
169
};
171
170
 
172
171
template <class T_functor, class T_catcher, class T_return>
287
286
    {}
288
287
  ~exception_catch_functor() {}
289
288
 
290
 
  protected: 
291
289
    T_catcher catcher_; 
292
290
};
293
291
 
300
298
      { this->catcher_(); }
301
299
  }
302
300
 
303
 
 
 
301
  
 
302
//template specialization of visit_each<>(action, functor):
304
303
template <class T_action, class T_functor, class T_catcher, class T_return>
305
304
void visit_each(const T_action& _A_action,
306
305
                const exception_catch_functor<T_functor, T_catcher, T_return>& _A_target)