diff options
Diffstat (limited to 'src/list.cpp')
| -rw-r--r-- | src/list.cpp | 33 |
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 | |||
| 5 | Gats::List::List() | ||
| 6 | { | ||
| 7 | } | ||
| 8 | |||
| 9 | Gats::List::~List() | ||
| 10 | { | ||
| 11 | } | ||
| 12 | |||
| 13 | void 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 | |||
| 23 | void 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 | |||
