diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-10-01 16:46:32 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-10-01 16:46:32 +0000 |
commit | d872f7e07c5367f251cf5ebb70a03916251f5306 (patch) | |
tree | 2140986825705e4b6bf35eba8dd556be772888ff /src/xmlreader.h | |
parent | 467c255511749f018c4572017c9e0e87275524ac (diff) | |
download | libbu++-d872f7e07c5367f251cf5ebb70a03916251f5306.tar.gz libbu++-d872f7e07c5367f251cf5ebb70a03916251f5306.tar.bz2 libbu++-d872f7e07c5367f251cf5ebb70a03916251f5306.tar.xz libbu++-d872f7e07c5367f251cf5ebb70a03916251f5306.zip |
Ok, NIDS is getting better and better, and I went ahead and cleaned up some
exception related code that's been annoying me. You should no longer have to
include any exception header explicitly for normal operations, every class that
has it's own exception to throw defines it in it's own headers.
This may break some code that uses libbu++, but it's an easy fix, just delete
the include for exceptions.h. Sometime soon I would also like to move from
Bu::ExceptionBase to Bu::Exception, but that will affect a lot more code than
this change did.
Diffstat (limited to '')
-rw-r--r-- | src/xmlreader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xmlreader.h b/src/xmlreader.h index 375dfe3..f2d975b 100644 --- a/src/xmlreader.h +++ b/src/xmlreader.h | |||
@@ -2,11 +2,14 @@ | |||
2 | #define BU_XML_READER_H | 2 | #define BU_XML_READER_H |
3 | 3 | ||
4 | #include "bu/fstring.h" | 4 | #include "bu/fstring.h" |
5 | #include "bu/exceptionbase.h" | ||
5 | 6 | ||
6 | namespace Bu | 7 | namespace Bu |
7 | { | 8 | { |
8 | class Stream; | 9 | class Stream; |
9 | 10 | ||
11 | subExceptionDecl( XmlException ); | ||
12 | |||
10 | class XmlReader | 13 | class XmlReader |
11 | { | 14 | { |
12 | public: | 15 | public: |