diff options
Diffstat (limited to 'TAO/examples/Callback_Quoter/Notifier_i.h')
-rw-r--r-- | TAO/examples/Callback_Quoter/Notifier_i.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/TAO/examples/Callback_Quoter/Notifier_i.h b/TAO/examples/Callback_Quoter/Notifier_i.h index 2f920c634ef..f9bd634b4ff 100644 --- a/TAO/examples/Callback_Quoter/Notifier_i.h +++ b/TAO/examples/Callback_Quoter/Notifier_i.h @@ -96,7 +96,15 @@ public: CONSUMER_MAP; CONSUMER_MAP consumer_map_; - // @@ Please add a comment. + // This is the hash map with each hash_entry consisting of the stockname + // and an unbounded set of consumer object pointer and the desired stockvalue. + + int notifier_exited_; + //This marks the exit of the notifier. This should be taken care of + // before the consumer tries to unregister after the notifier quits. + + + }; #endif /* NOTIFIER_I_H */ |