diff --git a/Code/ApplicationEngine/otbWrapperApplication.h b/Code/ApplicationEngine/otbWrapperApplication.h index e5965d7feffadaa09f6affc63a78a19b153c1970..572d0c59cb2f2ee4727f633c89309469f3bb52f6 100644 --- a/Code/ApplicationEngine/otbWrapperApplication.h +++ b/Code/ApplicationEngine/otbWrapperApplication.h @@ -24,6 +24,7 @@ #include "itkObjectFactory.h" #include "otbWrapperTypes.h" +#include "otbWrapperTags.h" #include "otbWrapperParameterGroup.h" #include "itkLogger.h" diff --git a/Code/ApplicationEngine/otbWrapperTags.h b/Code/ApplicationEngine/otbWrapperTags.h new file mode 100644 index 0000000000000000000000000000000000000000..19ed8105f8e3e982345a0071c8019876b1b5f90e --- /dev/null +++ b/Code/ApplicationEngine/otbWrapperTags.h @@ -0,0 +1,45 @@ +/*========================================================================= + + Program: ORFEO Toolbox + Language: C++ + Date: $Date$ + Version: $Revision$ + + + Copyright (c) Centre National d'Etudes Spatiales. All rights reserved. + See OTBCopyright.txt for details. + + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + + =========================================================================*/ +#ifndef __otbWrapperTags_h +#define __otbWrapperTags_h + + +namespace otb +{ +namespace Tags +{ + +static const std::string Calibration="Calibration"; +static const std::string ChangeDetection="Change Detection"; +static const std::string Classification="Classification"; +static const std::string DimensionReduction="Dimensionnality Reduction"; +static const std::string FeatureExtraction="Feature Extraction"; +static const std::string Filter="Image Filtering"; +static const std::string HyperSpectral="Hyper Spectral"; +static const std::string Learning="Learning"; +static const std::string Manip="Image Manipulation"; +static const std::string Projection="Projection"; +static const std::string RadiometricIndices="Radiometric Indices"; +static const std::string Raster="Raster"; +static const std::string Segmentation="Segmentation"; +static const std::string Vector="Vector"; + +} // end namespace Tags +} // end namespace otb + +#endif // __otbWrapperTags_h_