summaryrefslogtreecommitdiff
path: root/TAO/tao/Wait_Strategy.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-06-20 06:07:59 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-06-20 06:07:59 +0000
commitd438c23bfdd7a756a01dd94683bb40841b63344a (patch)
tree2d40c5969107d408f9c60168507704f3969986aa /TAO/tao/Wait_Strategy.h
parent6867b37ce03d12198c98bb2914a481d5acc32f40 (diff)
downloadATCD-d438c23bfdd7a756a01dd94683bb40841b63344a.tar.gz
ChangeLogTag: Mon Jun 19 12:11:09 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Wait_Strategy.h')
-rw-r--r--TAO/tao/Wait_Strategy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Wait_Strategy.h b/TAO/tao/Wait_Strategy.h
index d2818275714..d88c5e258bd 100644
--- a/TAO/tao/Wait_Strategy.h
+++ b/TAO/tao/Wait_Strategy.h
@@ -81,10 +81,10 @@ public:
virtual bool can_process_upcalls (void) const = 0;
/// Get method for the flag
- int is_registered (void);
+ bool is_registered (void) const;
/// Set method for the flag
- void is_registered (int flag);
+ void is_registered (bool flag);
protected:
/// Transport object.
@@ -92,8 +92,8 @@ protected:
/// Flag to indicate whether the service handler that created the
/// above transport has been registered with the reactor or not. The
- /// default is 0.
- int is_registered_;
+ /// default is false.
+ bool is_registered_;
};
TAO_END_VERSIONED_NAMESPACE_DECL