diff options
author | giovannd <giovannd@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-12-13 14:37:14 +0000 |
---|---|---|
committer | giovannd <giovannd@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-12-13 14:37:14 +0000 |
commit | cbbb994dc2d5e8df77bfa4bbe6abe837d3312944 (patch) | |
tree | bbcae289834d6029e89823dd4f9d08a4eb182b56 /TAO/orbsvcs/tests/Notify/lib/Command.h | |
parent | 59011ad5857e24786aad1d50d9ce683ab4d82f12 (diff) | |
download | ATCD-cbbb994dc2d5e8df77bfa4bbe6abe837d3312944.tar.gz |
ACE_TEXT, more orbsrvs, args, maketemp fix
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/lib/Command.h')
-rw-r--r-- | TAO/orbsvcs/tests/Notify/lib/Command.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/tests/Notify/lib/Command.h b/TAO/orbsvcs/tests/Notify/lib/Command.h index 739188699d8..20b77126569 100644 --- a/TAO/orbsvcs/tests/Notify/lib/Command.h +++ b/TAO/orbsvcs/tests/Notify/lib/Command.h @@ -45,16 +45,16 @@ public: virtual ~TAO_Notify_Tests_Command (); /// Parse args and populate options. - virtual void init (ACE_TArg_Shifter< char >& arg_shifter); + virtual void init (ACE_TArg_Shifter< ACE_TCHAR >& arg_shifter); /// Implement command execution. virtual void execute_i (ACE_ENV_SINGLE_ARG_DECL) = 0; /// Return the name of this command. - virtual const char* get_name (void)= 0; + virtual const ACE_TCHAR* get_name (void)= 0; ///= Each derived type must also implement the following signature: - // static const char* name (void); + // static const ACE_TCHAR* name (void); protected: /// Next command after this one. |