From d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 20 Apr 2022 11:14:47 -0700 Subject: ArchiveBase/Archive renamed. More to come. --- src/stable/list.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/stable/list.h') diff --git a/src/stable/list.h b/src/stable/list.h index c1a5559..5ef7ce0 100644 --- a/src/stable/list.h +++ b/src/stable/list.h @@ -11,7 +11,7 @@ #include #include "bu/exceptionbase.h" #include "bu/sharedcore.h" -#include "bu/archivebase.h" +#include "bu/archive.h" #include "bu/heap.h" namespace Bu @@ -1042,7 +1042,7 @@ namespace Bu } template - ArchiveBase &operator<<( ArchiveBase &ar, const List &h ) + Archive &operator<<( Archive &ar, const List &h ) { ar << h.getSize(); for( typename List::const_iterator i = h.begin(); i != h.end(); i++ ) @@ -1054,7 +1054,7 @@ namespace Bu } template - ArchiveBase &operator>>( ArchiveBase &ar, List &h ) + Archive &operator>>( Archive &ar, List &h ) { h.clear(); long nSize; -- cgit v1.2.3