[Assorted-commits] SF.net SVN: assorted: [740] cpp-commons/trunk/src/commons/deque.h
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-05-08 19:22:52
|
Revision: 740 http://assorted.svn.sourceforge.net/assorted/?rev=740&view=rev Author: yangzhang Date: 2008-05-08 12:22:53 -0700 (Thu, 08 May 2008) Log Message: ----------- added some documentation to deque Modified Paths: -------------- cpp-commons/trunk/src/commons/deque.h Modified: cpp-commons/trunk/src/commons/deque.h =================================================================== --- cpp-commons/trunk/src/commons/deque.h 2008-05-08 19:21:30 UTC (rev 739) +++ cpp-commons/trunk/src/commons/deque.h 2008-05-08 19:22:53 UTC (rev 740) @@ -8,6 +8,14 @@ { using namespace std; + /** + * A simple deque implementation that uses coarse-grained allocation (linked + * lists of chunks). This is very incomplete (e.g., you can only put things + * in, and can't get them back out!). + * + * \note This may be deprecated in favor of just using an alternative + * allocator with std::deque. + */ template <typename T> class deque { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |