summaryrefslogtreecommitdiff
path: root/ace/Test_and_Set.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Test_and_Set.h')
-rw-r--r--ace/Test_and_Set.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/ace/Test_and_Set.h b/ace/Test_and_Set.h
index 37e810f1b4e..d72c3d474b0 100644
--- a/ace/Test_and_Set.h
+++ b/ace/Test_and_Set.h
@@ -1,11 +1,10 @@
+// -*- C++ -*-
//=============================================================================
/**
* @file Test_and_Set.h
*
* $Id$
- *
- * @author Priyanka Gontla <pgontla@ece.uci.edu>
*/
//=============================================================================
@@ -20,6 +19,8 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
/**
* @class ACE_Test_and_Set
*
@@ -28,7 +29,7 @@
*
* This class keeps track of the status of <is_set_>, which can
* be set based on various events (such as receipt of a
- * signal). This class is derived from <ACE_Event_Handler> so
+ * signal). This class is derived from ACE_Event_Handler so
* that it can be "signaled" by a Reactor when a signal occurs.
* We assume that <TYPE> is a data type that can be assigned the
* value 0 or 1.
@@ -60,6 +61,8 @@ private:
ACE_LOCK lock_;
};
+ACE_END_VERSIONED_NAMESPACE_DECL
+
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "ace/Test_and_Set.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */