Skip to content
Snippets Groups Projects
Commit 26f9c8dd authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

BUG: redefine otb::List to preserve backward compatibility

parent d558a061
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.
=========================================================================*/
#ifndef __otbList_h
#define __otbList_h
namespace otb
{
//For backward compatibility only
// otb::List is deprecated and otb::ObjectList should be used instead
template <class TObject>
class ITK_EXPORT List : public ObjectList<TObject>
{};
}
#endif
\ No newline at end of file
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