include/wipal/tool/valued_iterator.hxx

00001 /*
00002  * WiPal - A library and a set of tools to manipulate wireless traces.
00003  * Copyright (C) 2007  Universite Pierre et Marie Curie - Paris 6
00004  *
00005  * This program is free software; you can redistribute it and/or modify
00006  * it under the terms of the GNU General Public License as published by
00007  * the Free Software Foundation; either version 2 of the License, or
00008  * (at your option) any later version.
00009  *
00010  * This program is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  * GNU General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU General Public License
00016  * along with this program; if not, write to the Free Software
00017  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
00018  * MA  02110-1301  USA
00019  *
00020  * Author: Thomas Claveirole <thomas.claveirole@lip6.fr>
00021  */
00022 #ifndef TOOL_VALUED_ITERATOR_HXX_
00023 # define TOOL_VALUED_ITERATOR_HXX_
00024 
00025 # include "valued_iterator.hh"
00026 
00027 namespace tool
00028 {
00029 
00030   template <class B>
00031   valued_iterator<B>::~valued_iterator()
00032   {
00033   }
00034 
00035   template <class B>
00036   const typename valued_iterator<B>::value_type&
00037   valued_iterator<B>::get() const
00038   {
00039     return value().get();
00040   }
00041 
00042   template <class B>
00043   typename valued_iterator<B>::value_type&
00044   valued_iterator<B>::get()
00045   {
00046     return value().get();
00047   }
00048 
00049   template <class B>
00050   const typename valued_iterator<B>::value_type*
00051   valued_iterator<B>::get_ptr() const
00052   {
00053     return value().get_ptr();
00054   }
00055 
00056   template <class B>
00057   typename valued_iterator<B>::value_type*
00058   valued_iterator<B>::get_ptr()
00059   {
00060     return value().get_ptr();
00061   }
00062 
00063   template <class B>
00064   const typename valued_iterator<B>::optional_value&
00065   valued_iterator<B>::value() const
00066   {
00067     return v_;
00068   }
00069   template <class B>
00070   typename valued_iterator<B>::optional_value&
00071   valued_iterator<B>::value()
00072   {
00073     return v_;
00074   }
00075 
00076 } // End of namespace tool.
00077 
00078 #endif // ! TOOL_VALUED_ITERATOR_HXX_

Generated on Wed Jan 16 16:15:14 2008 for wipal by  doxygen 1.5.4