summaryrefslogtreecommitdiff
path: root/ACEXML/common/Env.i
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/common/Env.i')
-rw-r--r--ACEXML/common/Env.i25
1 files changed, 0 insertions, 25 deletions
diff --git a/ACEXML/common/Env.i b/ACEXML/common/Env.i
deleted file mode 100644
index 95c3f41c8aa..00000000000
--- a/ACEXML/common/Env.i
+++ /dev/null
@@ -1,25 +0,0 @@
-// -*- C++ -*- $Id$
-
-#include "ace/Log_Msg.h" /* to get ACE_ASSERT */
-#include "ACEXML/common/Exception.h"
-
-ACEXML_INLINE ACEXML_Exception *
-ACEXML_Env::exception (void) const
-{
- return this->exception_;
-}
-
-ACEXML_INLINE void
-ACEXML_Env::exception (ACEXML_Exception *ex)
-{
- ACE_ASSERT (ex != this->exception_);
- this->clear();
- this->exception_ = ex;
-}
-
-ACEXML_INLINE void
-ACEXML_Env::clear (void)
-{
- delete this->exception_;
- this->exception_ = 0;
-}