00001 /*============================================================================= 00002 File: list.cpp 00003 Purpose: 00004 Revision: $Id: list.cpp,v 1.2 2002/05/13 21:07:45 philosophil Exp $ 00005 Created by: Philippe Lavoie (28 October 1997) 00006 Modified by: 00007 00008 Copyright notice: 00009 Copyright (C) 1996-1998 Philippe Lavoie 00010 00011 This library is free software; you can redistribute it and/or 00012 modify it under the terms of the GNU Library General Public 00013 License as published by the Free Software Foundation; either 00014 version 2 of the License, or (at your option) any later version. 00015 00016 This library is distributed in the hope that it will be useful, 00017 but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00019 Library General Public License for more details. 00020 00021 You should have received a copy of the GNU Library General Public 00022 License along with this library; if not, write to the Free 00023 Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00024 =============================================================================*/ 00025 #include "list.h" 00026 00027 #ifdef NO_IMPLICIT_TEMPLATES 00028 00029 template class BasicNode<float> ; 00030 template class BasicNode<double> ; 00031 template class BasicNode<int> ; 00032 template class BasicNode<char> ; 00033 template class BasicNode<unsigned char> ; 00034 template class BasicNode<PLib::Point3Df> ; 00035 template class BasicNode<PLib::HPoint3Df> ; 00036 template class BasicNode<PLib::Point3Dd> ; 00037 template class BasicNode<PLib::HPoint3Dd> ; 00038 template class BasicNode<PLib::Point2Df> ; 00039 template class BasicNode<PLib::HPoint2Df> ; 00040 template class BasicNode<PLib::Point2Dd> ; 00041 template class BasicNode<PLib::HPoint2Dd> ; 00042 template class BasicNode<PLib::Coordinate> ; 00043 00044 template class BasicList<float> ; 00045 template class BasicList<double> ; 00046 template class BasicList<int> ; 00047 template class BasicList<char> ; 00048 template class BasicList<unsigned char> ; 00049 template class BasicList<PLib::Point3Df> ; 00050 template class BasicList<PLib::HPoint3Df> ; 00051 template class BasicList<PLib::Point3Dd> ; 00052 template class BasicList<PLib::HPoint3Dd> ; 00053 template class BasicList<PLib::Point2Df> ; 00054 template class BasicList<PLib::HPoint2Df> ; 00055 template class BasicList<PLib::Point2Dd> ; 00056 template class BasicList<PLib::HPoint2Dd> ; 00057 template class BasicList<PLib::Coordinate> ; 00058 00059 #endif 00060