wxArt2D
a2dlist.inl
Go to the documentation of this file.
1 /*! \file wx/general/a2dlist.inl
2  \brief basic list class based on STL containers.
3  \author Klaas Holwerda
4  \author Kevin J Bluck
5  \date 1/11/2005
6 
7  Copyright: 2005 (c) Kevin J Bluck
8 
9  License: wxWidgets License
10 
11  RCS-ID: $Id: a2dlist.inl,v 1.9 2008/06/22 23:09:40 titato Exp $
12 */
13 
14 #ifndef __A2DLIST_INL__
15 #define __A2DLIST_INL__
16 
17 template<class T>
19 {
20  typename a2dlist<T>::const_iterator iter;
21  for( iter = other.begin(); iter != other.end(); iter++ )
22  {
23  this->push_back( (*iter) );
24  }
25 }
26 
27 template<class T>
29 {
30 }
31 
32 #endif // __A2DLIST_INL__
a2dlist()
Default constructor.
Definition: a2dlist.h:47
std list compatible list
Definition: a2dlist.h:42
~a2dlist()
Destructor.
Definition: a2dlist.inl:28
a2dlist.inl Source File -- Sun Oct 12 2014 17:04:12 -- Sun Oct 12 2014 -- 1.8.5 -- wxArt2D -- . -- Main Page Reference Documentation