2 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU Lesser General Public License as
4 * published by the Free Software Foundation, either version 3 of the
5 * License, or (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * @file BackInsertionSequenceToStackAdapter.ih
19 * @author Tristan Roussillon (\c tristan.roussillon@liris.cnrs.fr )
20 * Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), CNRS, France
24 * Implementation of inline methods defined in BackInsertionSequenceToStackAdapter.h
26 * This file is part of the DGtal library.
30//////////////////////////////////////////////////////////////////////////////
32//////////////////////////////////////////////////////////////////////////////
34///////////////////////////////////////////////////////////////////////////////
35// IMPLEMENTATION of inline methods.
36///////////////////////////////////////////////////////////////////////////////
38///////////////////////////////////////////////////////////////////////////////
39// ----------------------------------------------------------------------------
40template <typename TSequence>
42DGtal::BackInsertionSequenceToStackAdapter<TSequence>::
43BackInsertionSequenceToStackAdapter(Alias<Container> aContainer)
44 : myContainerPtr(&aContainer)
48// ----------------------------------------------------------------------------
49template <typename TSequence>
51typename DGtal::BackInsertionSequenceToStackAdapter<TSequence>::Size
52DGtal::BackInsertionSequenceToStackAdapter<TSequence>::size() const
54 return myContainerPtr->size();
57// ----------------------------------------------------------------------------
58template <typename TSequence>
61DGtal::BackInsertionSequenceToStackAdapter<TSequence>::empty() const
63 return myContainerPtr->empty();
66// ----------------------------------------------------------------------------
67template <typename TSequence>
69typename DGtal::BackInsertionSequenceToStackAdapter<TSequence>::Value&
70DGtal::BackInsertionSequenceToStackAdapter<TSequence>::top()
72 return myContainerPtr->back();
75// ----------------------------------------------------------------------------
76template <typename TSequence>
78const typename DGtal::BackInsertionSequenceToStackAdapter<TSequence>::Value&
79DGtal::BackInsertionSequenceToStackAdapter<TSequence>::top() const
81 return myContainerPtr->back();
84// ----------------------------------------------------------------------------
85template <typename TSequence>
88DGtal::BackInsertionSequenceToStackAdapter<TSequence>::push(const Value& aValue)
90 myContainerPtr->push_back(aValue);
93// ----------------------------------------------------------------------------
94template <typename TSequence>
97DGtal::BackInsertionSequenceToStackAdapter<TSequence>::pop()
99 myContainerPtr->pop_back();
102// ----------------------------------------------------------------------------
103template <typename TSequence>
106DGtal::BackInsertionSequenceToStackAdapter<TSequence>::selfDisplay ( std::ostream & out ) const
108 out << "[BackInsertionSequenceToStackAdapter]";
111// ----------------------------------------------------------------------------
112template <typename TSequence>
115DGtal::BackInsertionSequenceToStackAdapter<TSequence>::isValid() const
117 return (myContainerPtr != 0);
122///////////////////////////////////////////////////////////////////////////////
123// Implementation of inline functions //
125template <typename TSequence>
128DGtal::operator<< ( std::ostream & out,
129 const BackInsertionSequenceToStackAdapter<TSequence> & object )
131 object.selfDisplay( out );
136template <typename TSequence>
138DGtal::BackInsertionSequenceToStackAdapter<TSequence>
139DGtal::backStack ( TSequence& aSequence )
141 return BackInsertionSequenceToStackAdapter<TSequence>( aSequence );
144///////////////////////////////////////////////////////////////////////////////