Skip to content
Snippets Groups Projects
Commit b92aecd5 authored by Jordi Inglada's avatar Jordi Inglada
Browse files

TEST: instantiation test for new class

parent 2c53b84f
No related branches found
No related tags found
No related merge requests found
/*=========================================================================
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.
=========================================================================*/
#include "itkExceptionObject.h"
#include "otbSimplifyPathListFilter.h"
#include "itkPolyLineParametricPath.h"
#include <cstdlib>
int otbSimplifyPathListFilterNew(int argc, char * argv[])
{
const unsigned int Dimension =2;
typedef itk::PolyLineParametricPath<Dimension> PathType;
typedef otb::ParallelLinePathListFilter<PathType> ParallelLinePathType;
// Instantiating object
ParallelLinePathType::Pointer parallelLinePathListFilter =
ParallelLinePathType::New();
return EXIT_SUCCESS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment