Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

NewList.h

Go to the documentation of this file.
00001 // Copyright (C) 2003 Johan Jansson.
00002 // Licensed under the GNU GPL Version 2.
00003 
00004 #ifndef __NEWLIST_H
00005 #define __NEWLIST_H
00006 
00007 #include <list>
00008 #include <iterator>
00009 
00010 namespace dolfin {
00011 
00018 
00019   template <class T>
00020   class NewList : public std::list<T>
00021   {
00022   public:
00023     
00024     NewList() : std::list<T>() {}
00025 
00026     NewList(NewList<T> &x) : std::list<T>(x) {}
00027     
00028   };
00029   
00030 }
00031 
00032 #endif


Documentation automatically generated with Doxygen on 10 Sep 2004.