/*========================================================================= 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 otbStreamingManager_txx #define otbStreamingManager_txx #include "otbStreamingManager.h" #include namespace otb { template unsigned int StreamingManager::GetNumberOfSplits() { return m_ComputedNumberOfSplits; } template typename StreamingManager::RegionType StreamingManager::GetSplit(unsigned int i) { RegionType region( m_Region ); m_Splitter->GetSplit(i, m_ComputedNumberOfSplits, region); return region; } } // namespace otb #endif // otbStreamingManager_txx