From 6119b465b19e9be095971a33c63b0fa9a0e8a224 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 24 Sep 2008 05:52:36 +0000 Subject: Wow, I realized that the Bu::Array class wasn't finished, and went ahead and wrote it, it's pretty feature complete, index, append, iterators. You can't delete anything yet, exactly, but that's tricky in an array anyway, basically you just want to be able to remove elements from the end, and that's halfway there. Also, fixed some documentation and minor issues in Bu::Set, and made the Bu::Archive include fewer other classes while still defining archive oprators for them. I think I may yet move those into the headers for the classes that are being stored instead, makes a little more sense. I also would like to move the Exception classes out of the exceptions.h file and into the appropriate class' files'. There still should probably be a couple of general ones in there, or maybe just in exceptionbase.h, we'll see. --- src/array.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/array.cpp') diff --git a/src/array.cpp b/src/array.cpp index 8cb58ab..826425c 100644 --- a/src/array.cpp +++ b/src/array.cpp @@ -7,3 +7,4 @@ #include "bu/array.h" +namespace Bu { subExceptionDef( ArrayException ) } -- cgit v1.2.3