/usr/share/doc/libinsighttoolkit4-dev/Migration/RemoveitkSuperclassTraitMacro.xml is in libinsighttoolkit4-dev 4.5.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Change SYSTEM "http://itk.org/migrationv4/ITKMigration.dtd">
<!--**
**
** RemoveitkSuperclassTraitMacro.xml
**
** >>>>>>>>>>>>>>>>>>>>>>>>>>>>
** THIS FILE HAS BEEN AUTOMATICALLY GENERATED. EDIT IT BEFORE COMMITING
** <<<<<<<<<<<<<<<<<<<<<<<<<<<
**
** Please, make sure this file validates the following w3c test before committing it: http://validator.w3.org
**-->
<Change>
<!--**
** Title for the online migration page
**-->
<Title>
Remove itkSuperclassTraitMacro
</Title>
<!--**
** The author of the change
**-->
<Author>
Arnaud Gelas
</Author>
<!--**
** Date of creation for the XML document
**-->
<Date>
2011-10-13
</Date>
<!--**
** Plain text description of the change
** Extracted from git commit messages
**-->
<Description>
get rid of itkSuperclassTraitMacro
/** Macro used to redefine a type from the superclass. */
typedef typename Superclass::traitnameType traitnameType;
This macro was used only in 15 classes throughout the toolkit.
Remove this macro, to make type definitions more consistent.
</Description>
<!--**
** Sample code snippets
** Extracted from git diff of changed files in Examples and Testing
**-->
<SampleCode>
<Old>
itkSuperclassTraitMacro( DataType )
</Old>
<New>
typedef typename Superclass::DataType DataType;
</New>
</SampleCode>
<!--**
** The change-ids for all commits in the topic branch
**-->
<Gerrit-ChangeId>
I9acb0a46712e800207be4acdf74d3c3fb8134a4e
</Gerrit-ChangeId>
<!--**
** List of all changed files from the topic branch
**-->
<FileList>
Modules/Core/Common/include/itkMacro.h
Modules/Numerics/Statistics/include/itkHistogram.h
Modules/Numerics/Statistics/include/itkImageToListSampleAdaptor.h
Modules/Numerics/Statistics/include/itkJointDomainImageToListSampleAdaptor.h
Modules/Numerics/Statistics/include/itkListSample.h
Modules/Numerics/Statistics/include/itkNeighborhoodSampler.h
Modules/Numerics/Statistics/include/itkPointSetToListSampleAdaptor.h
Modules/Numerics/Statistics/include/itkSampleToHistogramFilter.h
Modules/Numerics/Statistics/include/itkVectorContainerToListSampleAdaptor.h
Modules/Numerics/Statistics/include/itkWeightedCovarianceSampleFilter.h
Modules/Numerics/Statistics/include/itkWeightedMeanSampleFilter.h
Modules/Registration/Metricsv4/include/itkEuclideanDistancePointSetMetric.h
Modules/Registration/Metricsv4/include/itkExpectationBasedPointSetMetric.h
Modules/Registration/Metricsv4/include/itkJensenHavrdaCharvatTsallisPointSetMetric.h
Modules/Registration/Metricsv4/include/itkPointSetToPointSetMetric.h
</FileList>
<!--**
** If the migration can be accomplished by a simple string
** substitution, then use the following construct to define
** the substitution rule.
**
** <MigrationFix-Automatic>
** <Old>
** <![CDATA[MipsleledName]]>
** </Old>
** <New>
** <![CDATA[MisspelledName]]>
** </New>
** </MigrationFix-Automatic>
**-->
<!--**
** If the migration can NOT be accomplished by a simple string
** substitution, but potential problem spots can be identified,
** use the following construct to define a migration flag rule.
**
** <MigrationFix-Manual>
** OldFunctionName
** </MigrationFix-Manual>
**-->
</Change>
|