summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib/Filter_Command.cpp
diff options
context:
space:
mode:
authorChris Cleeland <chris.cleeland@gmail.com>2005-11-21 20:05:23 +0000
committerChris Cleeland <chris.cleeland@gmail.com>2005-11-21 20:05:23 +0000
commita5b4e2dd67b8b75b947e1ab73f41c2ca1a27abfa (patch)
tree13bd8b2faf57ba9300438fa0240dd7f32aa656fe /TAO/orbsvcs/tests/Notify/lib/Filter_Command.cpp
parentdf40a01903c203715c18529081c18ecfd670749d (diff)
downloadATCD-a5b4e2dd67b8b75b947e1ab73f41c2ca1a27abfa.tar.gz
Mon Nov 21 13:21:03 2005 Chris Cleeland <cleeland_c@ociweb.com>
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/lib/Filter_Command.cpp')
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/Filter_Command.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/Notify/lib/Filter_Command.cpp b/TAO/orbsvcs/tests/Notify/lib/Filter_Command.cpp
index 48ff6bfae18..2bb7bb716b4 100644
--- a/TAO/orbsvcs/tests/Notify/lib/Filter_Command.cpp
+++ b/TAO/orbsvcs/tests/Notify/lib/Filter_Command.cpp
@@ -183,21 +183,26 @@ TAO_Notify_Tests_Filter_Command::execute_i (ACE_ENV_SINGLE_ARG_DECL)
if (this->command_ == CREATE_FACTORY)
{
this->handle_create_filter_factory (ACE_ENV_SINGLE_ARG_PARAMETER);
+ ACE_CHECK;
}
else if (this->command_ == CREATE_FILTER)
{
this->handle_create_filter (ACE_ENV_SINGLE_ARG_PARAMETER);
+ ACE_CHECK;
}
else if (this->command_ == ADD_CONSTRAINT)
{
this->handle_add_constraint (ACE_ENV_SINGLE_ARG_PARAMETER);
+ ACE_CHECK;
}
else if (this->command_ == ADD_FILTER)
{
this->handle_add_filter (ACE_ENV_SINGLE_ARG_PARAMETER);
+ ACE_CHECK;
}
else if (this->command_ == DESTROY)
{
this->handle_destroy_filter (ACE_ENV_SINGLE_ARG_PARAMETER);
+ ACE_CHECK;
}
}