summaryrefslogtreecommitdiff
path: root/ACE/ACEXML/common/Env.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ACEXML/common/Env.inl')
-rw-r--r--ACE/ACEXML/common/Env.inl25
1 files changed, 0 insertions, 25 deletions
diff --git a/ACE/ACEXML/common/Env.inl b/ACE/ACEXML/common/Env.inl
deleted file mode 100644
index 95c3f41c8aa..00000000000
--- a/ACE/ACEXML/common/Env.inl
+++ /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;
-}