~ubuntu-branches/ubuntu/precise/insighttoolkit/precise

« back to all changes in this revision

Viewing changes to Code/Common/itkImageRegionReverseIterator.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-12-19 20:16:49 UTC
  • mfrom: (1.2.1 upstream) (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081219201649-drt97guwl2ryt0cn

* New upstream version.
  - patches/nifti-versioning.patch: Remove.  Applied upstream.
  - control:
  - rules: Update version numbers, package names.

* control: Build-depend on uuid-dev (gdcm uses it).

* copyright: Update download URL.

* rules: Adhere to parallel=N in DEB_BUILD_OPTIONS by setting MAKEFLAGS.

* compat: Set to 7.
* control: Update build-dep on debhelper to version >= 7.

* CMakeCache.txt.debian: Set CMAKE_BUILD_TYPE to "RELEASE" so that we
  build with -O3 (not -O2), necessary to optimize the templated code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  Program:   Insight Segmentation & Registration Toolkit
4
4
  Module:    $RCSfile: itkImageRegionReverseIterator.h,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2007-01-30 20:56:08 $
7
 
  Version:   $Revision: 1.16 $
 
6
  Date:      $Date: 2008-10-18 21:13:25 $
 
7
  Version:   $Revision: 1.17 $
8
8
 
9
9
  Copyright (c) Insight Software Consortium. All rights reserved.
10
10
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
68
68
{
69
69
public:
70
70
  /** Standard class typedefs. */
71
 
  typedef ImageRegionReverseIterator Self;
72
 
  typedef ImageRegionReverseConstIterator<TImage>  Superclass;
 
71
  typedef ImageRegionReverseIterator                  Self;
 
72
  typedef ImageRegionReverseConstIterator<TImage>     Superclass;
73
73
  
74
74
   /** Types inherited from the Superclass */
75
75
  typedef typename Superclass::IndexType              IndexType;
117
117
   * \deprecated Use GoToBegin() instead */
118
118
  Self Begin(void) const;
119
119
 
120
 
   /** Return an iterator for the end of the region. "End" is defined
 
120
  /** Return an iterator for the end of the region. "End" is defined
121
121
   * as one pixel past the last pixel of the region. 
122
122
   * \deprecated Use GoToEnd() instead */
123
123
  Self End(void) const;
149
149
#endif
150
150
 
151
151
#endif 
152
 
 
153
 
 
154