summaryrefslogtreecommitdiff
path: root/ace/Reactor_Token_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Reactor_Token_T.h')
-rw-r--r--ace/Reactor_Token_T.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/ace/Reactor_Token_T.h b/ace/Reactor_Token_T.h
index 9ed4c671d52..8d71bbb420f 100644
--- a/ace/Reactor_Token_T.h
+++ b/ace/Reactor_Token_T.h
@@ -1,4 +1,4 @@
-// -*- C++ -*-
+/* -*- C++ -*- */
//=============================================================================
/**
@@ -18,7 +18,6 @@
#include "ace/Reactor_Impl.h"
#include "ace/Token.h"
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class ACE_Reactor_Token_T
@@ -54,12 +53,10 @@ template <class ACE_TOKEN_TYPE>
class ACE_Reactor_Token_T : public ACE_TOKEN_TYPE
{
public:
- /**
- * @todo After ACE 5.5.1, change ACE_Token::FIFO to ACE_TOKEN_TYPE::FIFO.
- * This is only like this to work around MSVC 6 problems.
- */
+ // *** After ACE 5.5.1, change ACE_Token::FIFO to ACE_TOKEN_TYPE::FIFO.
+ // **** This is only like this to work around MSVC 6 problems.
ACE_Reactor_Token_T (ACE_Reactor_Impl &r,
- int s_queue = ACE_Token::FIFO);
+ int s_queue = ACE_Token::FIFO);
ACE_Reactor_Token_T (int s_queue = ACE_Token::FIFO);
virtual ~ACE_Reactor_Token_T (void);
@@ -83,7 +80,11 @@ private:
ACE_Reactor_Impl *reactor_;
};
-ACE_END_VERSIONED_NAMESPACE_DECL
+// There's no Reactor_Token_T.inl, but if there was, here's where it would
+// get included.
+#if 0 // defined (__ACE_INLINE__)
+#include "ace/Reactor_Token_T.inl"
+#endif /* __ACE_INLINE__ */
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "ace/Reactor_Token_T.cpp"