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 FIFO_CC 00012 #define FIFO_CC 00013 00015 00016 template<class T> 00017 Fifo<T>::Fifo(const Id& n) : 00018 FifoImplT<T>(n) 00019 { } 00020 00021 template<class T> 00022 Fifo<T>::Fifo(const Id& n, unsigned int l) : 00023 FifoImplT<T>(n, l) 00024 { } 00025 00026 template<class T> 00027 Fifo<T>::Fifo(const Id& n, unsigned int l, unsigned int h) : 00028 FifoImplT<T>(n, l, h) 00029 { } 00030 00031 template<class T> inline 00032 Connector* Fifo<T>::connector() 00033 { 00034 return this; 00035 } 00036 00037 #endif