summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib/Command.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/lib/Command.cpp')
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/Command.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/tests/Notify/lib/Command.cpp b/TAO/orbsvcs/tests/Notify/lib/Command.cpp
index b14d86d5774..45b809430fd 100644
--- a/TAO/orbsvcs/tests/Notify/lib/Command.cpp
+++ b/TAO/orbsvcs/tests/Notify/lib/Command.cpp
@@ -7,29 +7,29 @@
ACE_RCSID(lib, TAO_Command, "$id$")
-TAO_NS_Command::TAO_NS_Command (void)
+TAO_Notify_Tests_Command::TAO_Notify_Tests_Command (void)
:next_ (0), command_ (INVALID)
{
}
-TAO_NS_Command::~TAO_NS_Command ()
+TAO_Notify_Tests_Command::~TAO_Notify_Tests_Command ()
{
}
void
-TAO_NS_Command::init (ACE_Arg_Shifter& /*arg_shifter*/)
+TAO_Notify_Tests_Command::init (ACE_Arg_Shifter& /*arg_shifter*/)
{
// default: do nothing.
}
void
-TAO_NS_Command::next (TAO_NS_Command* command)
+TAO_Notify_Tests_Command::next (TAO_Notify_Tests_Command* command)
{
this->next_ = command;
}
void
-TAO_NS_Command::execute (ACE_ENV_SINGLE_ARG_DECL)
+TAO_Notify_Tests_Command::execute (ACE_ENV_SINGLE_ARG_DECL)
{
if (this->command_ == INVALID)
{