aboutsummaryrefslogtreecommitdiff
path: root/src/list.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-08-14 07:12:29 +0000
committerMike Buland <eichlan@xagasoft.com>2010-08-14 07:12:29 +0000
commit1b797548dff7e2475826ba29a71c3f496008988f (patch)
tree2a81ee2e8fa2f17fd95410aabbf44533d35a727a /src/list.cpp
downloadlibgats-1b797548dff7e2475826ba29a71c3f496008988f.tar.gz
libgats-1b797548dff7e2475826ba29a71c3f496008988f.tar.bz2
libgats-1b797548dff7e2475826ba29a71c3f496008988f.tar.xz
libgats-1b797548dff7e2475826ba29a71c3f496008988f.zip
libgats gets it's own repo. The rest of the history is in my misc repo.
Diffstat (limited to 'src/list.cpp')
-rw-r--r--src/list.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/list.cpp b/src/list.cpp
new file mode 100644
index 0000000..995a764
--- /dev/null
+++ b/src/list.cpp
@@ -0,0 +1,33 @@
1#include "gats/list.h"
2
3#include <bu/stream.h>
4
5Gats::List::List()
6{
7}
8
9Gats::List::~List()
10{
11}
12
13void Gats::List::write( Bu::Stream &rOut ) const
14{
15 rOut.write("l", 1 );
16 for( const_iterator i = begin(); i; i++ )
17 {
18 (*i)->write( rOut );
19 }
20 rOut.write("e", 1 );
21}
22
23void Gats::List::read( Bu::Stream &rIn, char cType )
24{
25 for(;;)
26 {
27 Gats::Object *pObj = Gats::Object::read( rIn );
28 if( pObj == NULL )
29 break;
30 append( pObj );
31 }
32}
33