summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation_Exception_Test
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-09-30 14:49:17 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-09-30 14:49:17 +0000
commit811b8c511f5b38f2106746ad9395ab9a47d6b47f (patch)
tree31dd173cd7b636975d2315b257caaa79e50ec882 /TAO/tests/Collocation_Exception_Test
parent220d260e533ae88d7f67b3ba71c90f76e3eb9169 (diff)
downloadATCD-811b8c511f5b38f2106746ad9395ab9a47d6b47f.tar.gz
Tue Sep 30 14:47:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/Collocation_Exception_Test')
-rw-r--r--TAO/tests/Collocation_Exception_Test/Client_Task.h4
-rw-r--r--TAO/tests/Collocation_Exception_Test/Server_Task.cpp2
-rw-r--r--TAO/tests/Collocation_Exception_Test/Server_Task.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/Collocation_Exception_Test/Client_Task.h b/TAO/tests/Collocation_Exception_Test/Client_Task.h
index 33eb64be258..7cd0fd1eb01 100644
--- a/TAO/tests/Collocation_Exception_Test/Client_Task.h
+++ b/TAO/tests/Collocation_Exception_Test/Client_Task.h
@@ -20,7 +20,7 @@ class Client_Task : public ACE_Task_Base
public:
/// Constructor
- Client_Task (const char *input,
+ Client_Task (const ACE_TCHAR *input,
CORBA::ORB_ptr corb,
ACE_Thread_Manager *thr_mgr);
@@ -32,7 +32,7 @@ private:
void test_user_exception_expected (Test::Hello_ptr hello_ptr);
void test_user_exception_not_expected (Test::Hello_ptr hello_ptr);
- const char *input_;
+ const ACE_TCHAR *input_;
CORBA::ORB_var corb_;
};
diff --git a/TAO/tests/Collocation_Exception_Test/Server_Task.cpp b/TAO/tests/Collocation_Exception_Test/Server_Task.cpp
index ed01435ce1d..ea5496296a4 100644
--- a/TAO/tests/Collocation_Exception_Test/Server_Task.cpp
+++ b/TAO/tests/Collocation_Exception_Test/Server_Task.cpp
@@ -12,7 +12,7 @@ ACE_RCSID(Collocation_Oneway_Tests,
"$Id$")
-Server_Task::Server_Task (const char *output,
+Server_Task::Server_Task (const ACE_TCHAR *output,
CORBA::ORB_ptr sorb,
ACE_Manual_Event &me,
ACE_Thread_Manager *thr_mgr)
diff --git a/TAO/tests/Collocation_Exception_Test/Server_Task.h b/TAO/tests/Collocation_Exception_Test/Server_Task.h
index 60006aae0ba..e42043c0711 100644
--- a/TAO/tests/Collocation_Exception_Test/Server_Task.h
+++ b/TAO/tests/Collocation_Exception_Test/Server_Task.h
@@ -24,7 +24,7 @@ class Server_Task : public ACE_Task_Base
{
public:
/// Constructor
- Server_Task (const char *output,
+ Server_Task (const ACE_TCHAR *output,
CORBA::ORB_ptr sorb,
ACE_Manual_Event &me,
ACE_Thread_Manager *thr_mgr);
@@ -34,7 +34,7 @@ public:
private:
/// Output file for IOR
- const char *output_;
+ const ACE_TCHAR *output_;
/// Manual event to wake up the main thread to create a client
/// thread.