diff options
author | silinoron <none@none> | 2010-08-15 13:21:05 -0700 |
---|---|---|
committer | silinoron <none@none> | 2010-08-15 13:21:05 -0700 |
commit | 4d5296299b7a72c37cda56bfa885c82167066c3c (patch) | |
tree | 2936b23000015173a0c2d82907df9ce7fdc8f785 /externals/ace/Connector.h | |
parent | e3b8a5923d5e5512cfe6e0f02246d22146691008 (diff) |
Backed out changeset: 6b66f86b01e4
Should fix windows compile. Blame me and click (but mostly click)
--HG--
branch : trunk
Diffstat (limited to 'externals/ace/Connector.h')
-rw-r--r-- | externals/ace/Connector.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/externals/ace/Connector.h b/externals/ace/Connector.h index d0b98cfa923..08ef2aa0b8d 100644 --- a/externals/ace/Connector.h +++ b/externals/ace/Connector.h @@ -4,7 +4,7 @@ /** * @file Connector.h * - * $Id: Connector.h 91058 2010-07-12 08:20:09Z johnnyw $ + * $Id: Connector.h 89510 2010-03-17 12:21:14Z vzykov $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -424,7 +424,7 @@ public: SUPER; /** - * Initialize a connector. @a flags indicates how SVC_HANDLER's + * Initialize a connector. @a flags indicates how <SVC_HANDLER>'s * should be initialized prior to being activated. Right now, the * only flag that is processed is ACE_NONBLOCK, which enabled * non-blocking I/O on the SVC_HANDLER when it is opened. @@ -535,21 +535,21 @@ protected: /// Creation strategy for an Connector. CREATION_STRATEGY *creation_strategy_; - /// True if Connector created the creation strategy and thus should + /// true if Connector created the creation strategy and thus should /// delete it, else false. bool delete_creation_strategy_; /// Connect strategy for a Connector. CONNECT_STRATEGY *connect_strategy_; - /// True if Connector created the connect strategy and thus should + /// true if Connector created the connect strategy and thus should /// delete it, else false. bool delete_connect_strategy_; - /// Concurrency strategy for a Connector. + /// Concurrency strategy for an <Connector>. CONCURRENCY_STRATEGY *concurrency_strategy_; - /// True if Connector created the concurrency strategy and thus should + /// true if Connector created the concurrency strategy and thus should /// delete it, else false. bool delete_concurrency_strategy_; }; |