00001 /*-------------------------------------------------------------------- 00002 * 00003 * (C) Copyright Koninklijke Philips Electronics NV 2006. 00004 * All rights reserved. This software is licensed under the terms of 00005 * version 2.1 of the GNU Lesser General Public License as published 00006 * by the Free Software Foundation. For licensing and warranty 00007 * information, see the file COPYING in the main directory. 00008 * 00009 *------------------------------------------------------------------*/ 00010 00011 #ifndef FIFOIMPLT_CC 00012 #define FIFOIMPLT_CC 00013 00015 00016 template<class T> 00017 FifoImplT<T>::FifoImplT(IdBase n) : 00018 FifoImpl(n) 00019 { 00020 } 00021 00022 template<class T> 00023 FifoImplT<T>::FifoImplT(IdBase n, unsigned int lo) : 00024 FifoImpl(n,lo) 00025 { 00026 } 00027 00028 template<class T> 00029 FifoImplT<T>::FifoImplT(IdBase n, unsigned int lo, unsigned int hi) : 00030 FifoImpl(n,lo,hi) 00031 { 00032 } 00033 00034 template<class T> inline 00035 unsigned int FifoImplT<T>::tokenSize() const 00036 { 00037 return sizeof(T); 00038 } 00039 00040 #endif