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

« back to all changes in this revision

Viewing changes to Code/Common/itkImageLinearIteratorWithIndex.txx

  • 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: itkImageLinearIteratorWithIndex.txx,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2003-09-10 14:29:11 $
7
 
  Version:   $Revision: 1.10 $
 
6
  Date:      $Date: 2008-10-18 20:31:36 $
 
7
  Version:   $Revision: 1.11 $
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.
14
14
     PURPOSE.  See the above copyright notices for more information.
15
15
 
16
16
=========================================================================*/
17
 
#ifndef _itkImageLinearIteratorWithIndex_txx
18
 
#define _itkImageLinearIteratorWithIndex_txx
 
17
#ifndef __itkImageLinearIteratorWithIndex_txx
 
18
#define __itkImageLinearIteratorWithIndex_txx
19
19
 
20
20
#include "itkImageLinearIteratorWithIndex.h"
21
21
 
23
23
{
24
24
 
25
25
 
26
 
 
27
26
template< typename TImage >
28
27
ImageLinearIteratorWithIndex<TImage>
29
28
::ImageLinearIteratorWithIndex()
34
33
}
35
34
 
36
35
 
37
 
 
38
36
template< typename TImage >
39
37
ImageLinearIteratorWithIndex<TImage>
40
38
::ImageLinearIteratorWithIndex(ImageType *ptr, const RegionType& region) :
72
70
}
73
71
 
74
72
 
75
 
 
76
73
} // end namespace itk
77
74
 
78
75
#endif