From 414b21e153bff36c1f9922852aed649f278f7394 Mon Sep 17 00:00:00 2001 From: Guillaume Pasero <guillaume.pasero@c-s.fr> Date: Mon, 4 Dec 2017 18:45:17 +0100 Subject: [PATCH] STYLE: uniform include guards --- .../include/otbDimensionalityReductionTrainAutoencoder.txx | 4 ++-- .../include/otbDimensionalityReductionTrainPCA.txx | 4 ++-- .../include/otbDimensionalityReductionTrainSOM.txx | 4 ++-- .../include/otbTrainDimensionalityReductionApplicationBase.h | 4 ++-- .../otbTrainDimensionalityReductionApplicationBase.txx | 4 ++-- .../include/otbAutoencoderModel.h | 4 ++-- .../include/otbAutoencoderModel.txx | 4 ++-- .../include/otbAutoencoderModelFactory.h | 4 ++-- .../include/otbAutoencoderModelFactory.txx | 4 ++-- .../include/otbDimensionalityReductionModelFactory.h | 4 ++-- .../include/otbDimensionalityReductionModelFactory.txx | 4 ++-- .../include/otbImageDimensionalityReductionFilter.h | 4 ++-- .../include/otbImageDimensionalityReductionFilter.txx | 4 ++-- .../DimensionalityReductionLearning/include/otbPCAModel.h | 4 ++-- .../DimensionalityReductionLearning/include/otbPCAModel.txx | 4 ++-- .../include/otbPCAModelFactory.h | 4 ++-- .../include/otbPCAModelFactory.txx | 4 ++-- .../DimensionalityReductionLearning/include/otbSOMModel.h | 4 ++-- .../include/otbSOMModelFactory.txx | 4 ++-- 19 files changed, 38 insertions(+), 38 deletions(-) diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.txx b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.txx index fff6561a21..3e9107a9a8 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.txx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainAutoencoder.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef cbTrainAutoencoder_txx -#define cbTrainAutoencoder_txx +#ifndef otbDimensionalityReductionTrainAutoencoder_txx +#define otbDimensionalityReductionTrainAutoencoder_txx #include "otbTrainDimensionalityReductionApplicationBase.h" #include "otbAutoencoderModel.h" diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.txx b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.txx index 7778c25203..b04bd41eae 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.txx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainPCA.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef cbTrainPCA_txx -#define cbTrainPCA_txx +#ifndef otbDimensionalityReductionTrainPCA_txx +#define otbDimensionalityReductionTrainPCA_txx #include "otbTrainDimensionalityReductionApplicationBase.h" #include "otbPCAModel.h" diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.txx b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.txx index 2beb312157..2cfeb1ad30 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.txx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbDimensionalityReductionTrainSOM.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef cbTrainSOM_txx -#define cbTrainSOM_txx +#ifndef otbDimensionalityReductionTrainSOM_txx +#define otbDimensionalityReductionTrainSOM_txx #include "otbTrainDimensionalityReductionApplicationBase.h" #include "otbSOMModel.h" diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h index dfec205de2..85c12a4fb8 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h +++ b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.h @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef cbLearningApplicationBaseDR_h -#define cbLearningApplicationBaseDR_h +#ifndef otbTrainDimensionalityReductionApplicationBase_h +#define otbTrainDimensionalityReductionApplicationBase_h #include "otbConfigure.h" diff --git a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.txx b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.txx index 54251e5928..d99b51caae 100644 --- a/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.txx +++ b/Modules/Applications/AppDimensionalityReduction/include/otbTrainDimensionalityReductionApplicationBase.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef cbLearningApplicationBaseDR_txx -#define cbLearningApplicationBaseDR_txx +#ifndef otbTrainDimensionalityReductionApplicationBase_txx +#define otbTrainDimensionalityReductionApplicationBase_txx #include "otbTrainDimensionalityReductionApplicationBase.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h index 44e98f578e..de0a221283 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.h @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef AutoencoderModel_h -#define AutoencoderModel_h +#ifndef otbAutoencoderModel_h +#define otbAutoencoderModel_h #include "otbMachineLearningModelTraits.h" #include "otbMachineLearningModel.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.txx b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.txx index 176ffb7de5..5f0708e5b4 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.txx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModel.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef AutoencoderModel_txx -#define AutoencoderModel_txx +#ifndef otbAutoencoderModel_txx +#define otbAutoencoderModel_txx #include "otbAutoencoderModel.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h index ca411f0e70..eacd2901ef 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.h @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef AutoencoderModelFactory_h -#define AutoencoderModelFactory_h +#ifndef otbAutoencoderModelFactory_h +#define otbAutoencoderModelFactory_h //#include <shark/Models/TiedAutoencoder.h> diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.txx b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.txx index 53201871ab..0d66ea86e0 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.txx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbAutoencoderModelFactory.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef AutoencoderModelFactory_txx -#define AutoencoderModelFactory_txx +#ifndef otbAutoencoderModelFactory_txx +#define otbAutoencoderModelFactory_txx #include "otbAutoencoderModelFactory.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h b/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h index 8e80633c01..21c1d8a04a 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.h @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef DimensionalityReductionModelFactory_h -#define DimensionalityReductionModelFactory_h +#ifndef otbDimensionalityReductionModelFactory_h +#define otbDimensionalityReductionModelFactory_h //#include "DimensionalityReductionModel.h" #include "otbMachineLearningModelFactoryBase.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.txx b/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.txx index 5a9b9b7740..65280436ca 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.txx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbDimensionalityReductionModelFactory.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef DimensionalityReductionModelFactory_txx -#define DimensionalityReductionModelFactory_txx +#ifndef otbDimensionalityReductionModelFactory_txx +#define otbDimensionalityReductionModelFactory_txx #include "otbDimensionalityReductionModelFactory.h" #include "otbConfigure.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h b/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h index a868915352..67bf3d2e4e 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.h @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef ImageDimensionalityReduction_h -#define ImageDimensionalityReduction_h +#ifndef otbImageDimensionalityReduction_h +#define otbImageDimensionalityReduction_h #include "itkImageToImageFilter.h" //#include "DimensionalityReductionModel.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.txx b/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.txx index 8cc87642f4..8f7a715621 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.txx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbImageDimensionalityReductionFilter.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef otbImageClassificationFilter_txx -#define otbImageClassificationFilter_txx +#ifndef otbImageDimensionalityReductionFilter_txx +#define otbImageDimensionalityReductionFilter_txx #include "otbImageDimensionalityReductionFilter.h" #include "itkImageRegionIterator.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h index b2b191155e..f9cc914270 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.h @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef PCAModel_h -#define PCAModel_h +#ifndef otbPCAModel_h +#define otbPCAModel_h #include "otbMachineLearningModelTraits.h" #include "otbMachineLearningModel.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.txx b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.txx index 4d37df2003..063b54f4f4 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.txx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModel.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef PCAModel_txx -#define PCAModel_txx +#ifndef otbPCAModel_txx +#define otbPCAModel_txx #include "otbPCAModel.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h index c7c376ecd8..8e044713f3 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.h @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef PCAModelFactory_h -#define PCAModelFactory_h +#ifndef otbPCAModelFactory_h +#define otbPCAModelFactory_h #include "itkObjectFactoryBase.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.txx b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.txx index 05c59b292e..aeafff621d 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.txx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbPCAModelFactory.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef PCAFactory_txx -#define PCAFactory_txx +#ifndef otbPCAFactory_txx +#define otbPCAFactory_txx #include "otbPCAModelFactory.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h index 62b013eda5..1025ab0e6c 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModel.h @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef SOMModel_h -#define SOMModel_h +#ifndef otbSOMModel_h +#define otbSOMModel_h //#include "DimensionalityReductionModel.h" #include "otbSOMMap.h" diff --git a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.txx b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.txx index 0f87ffcde3..bcef5c92a4 100644 --- a/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.txx +++ b/Modules/Learning/DimensionalityReductionLearning/include/otbSOMModelFactory.txx @@ -17,8 +17,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef SOMFactory_txx -#define SOMFactory_txx +#ifndef otbSOMFactory_txx +#define otbSOMFactory_txx #include "otbSOMModelFactory.h" -- GitLab