Main Page   Class Hierarchy   Compound List   File List   Compound Members  

barray_point.cpp

00001 /*=============================================================================
00002         File: barray_point.cpp
00003      Purpose:       
00004     Revision: $Id: barray_point.cpp,v 1.2 2002/05/13 21:07:45 philosophil Exp $
00005   Created by: Philippe Lavoie          (3 Oct, 1996)
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 
00026 
00027 
00028 #include "barray.cpp"
00029 
00030 namespace PLib {
00031 
00032 #ifdef NO_IMPLICIT_TEMPLATES
00033 
00034   template class BasicArray<Point3Df> ;
00035   template void resizeBasicArray<Point3Df>(BasicArray<Point3Df>&,int) ;
00036   template int operator!=(const BasicArray<Point3Df>&,const BasicArray<Point3Df>&); 
00037   template int operator==(const BasicArray<Point3Df>&,const BasicArray<Point3Df>&); 
00038   template istream& operator>>(istream& is, BasicArray<Point3Df>& ary);
00039   template ostream& operator<<(ostream& os, const BasicArray<Point3Df>& ary);
00040 
00041   template class BasicArray<Point2Df> ;
00042   template void resizeBasicArray<Point2Df>(BasicArray<Point2Df>&,int) ;
00043   template int operator!=(const BasicArray<Point2Df>&,const BasicArray<Point2Df>&); 
00044   template int operator==(const BasicArray<Point2Df>&,const BasicArray<Point2Df>&); 
00045   template istream& operator>>(istream& is, BasicArray<Point2Df>& ary);
00046   template ostream& operator<<(ostream& os, const BasicArray<Point2Df>& ary);
00047 
00048   template class BasicArray<Point3Dd> ;
00049   template void resizeBasicArray<Point3Dd>(BasicArray<Point3Dd>&,int) ;
00050   template int operator!=(const BasicArray<Point3Dd>&,const BasicArray<Point3Dd>&); 
00051   template int operator==(const BasicArray<Point3Dd>&,const BasicArray<Point3Dd>&); 
00052   template istream& operator>>(istream& is, BasicArray<Point3Dd>& ary);
00053   template ostream& operator<<(ostream& os, const BasicArray<Point3Dd>& ary);
00054 
00055   template class BasicArray<Point2Dd> ;
00056   template void resizeBasicArray<Point2Dd>(BasicArray<Point2Dd>&,int) ;
00057   template int operator!=(const BasicArray<Point2Dd>&,const BasicArray<Point2Dd>&); 
00058   template int operator==(const BasicArray<Point2Dd>&,const BasicArray<Point2Dd>&); 
00059   template istream& operator>>(istream& is, BasicArray<Point2Dd>& ary);
00060   template ostream& operator<<(ostream& os, const BasicArray<Point2Dd>& ary);
00061 
00062 #endif
00063 
00064 }

Generated on Tue Jun 24 13:26:54 2003 for NURBS++ by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002