1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkSTLConstContainerAdaptor.h,v $
Language: C++
Date: $Date: 2003-09-10 14:29:24 $
Version: $Revision: 1.3 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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 __itkSTLConstContainerAdaptor_h
#define __itkSTLConstContainerAdaptor_h
namespace itk {
/** \class STLConstContainerAdaptor
* An adapter object that casts a [const itk::XxxContainer] into [const std::xxx]
* and enables access to the underlying data structure.
* The class is provided for interface consistency with STLContainerAdaptor
* plus the [const] modifier. Since everything is const, there is no need to call
* AdapteeType::Modified() in the destructor.
* Here's a usage example of STLContainerAdaptor
* itk::STLConstContainerAdaptor<itk::VectorContainer<unsigned long, ElementType>> vecAdaptor(aContainer);
* const std::vector<ElementType> & vec = vecAdaptor.GetSTLContainerRef();
* // do things with vec ...
*/
template<typename TContainer>
class STLConstContainerAdaptor
{
public:
typedef const TContainer AdapteeType;
typedef const typename AdapteeType::Element ElementType;
typedef const typename AdapteeType::STLContainerType TargetType;
private:
AdapteeType & m_AdapteeRef;
/** hide the copy constructor to allow only direct construction of the adapter */
STLConstContainerAdaptor(const STLConstContainerAdaptor & r);
/* hide and avoid operator= */
const STLConstContainerAdaptor & operator=(const STLConstContainerAdaptor & r);
public:
STLConstContainerAdaptor(AdapteeType & adaptee)
: m_AdapteeRef(adaptee)
{}
STLConstContainerAdaptor(AdapteeType * adaptee)
: m_AdapteeRef(*adaptee)
{}
TargetType & GetSTLConstContainerRef()
{
return m_AdapteeRef.CastToSTLConstContainer();
}
};
} // end namespace itk
#endif
|