summaryrefslogtreecommitdiff
path: root/TAO/tests/DII_Collocation_Tests/twoway
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/DII_Collocation_Tests/twoway
parent220d260e533ae88d7f67b3ba71c90f76e3eb9169 (diff)
downloadATCD-811b8c511f5b38f2106746ad9395ab9a47d6b47f.tar.gz
Tue Sep 30 14:47:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/DII_Collocation_Tests/twoway')
-rw-r--r--TAO/tests/DII_Collocation_Tests/twoway/Client_Task.h8
-rw-r--r--TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp2
-rw-r--r--TAO/tests/DII_Collocation_Tests/twoway/Server_Task.h4
3 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/DII_Collocation_Tests/twoway/Client_Task.h b/TAO/tests/DII_Collocation_Tests/twoway/Client_Task.h
index 2659536d7ad..80ecdcbb79e 100644
--- a/TAO/tests/DII_Collocation_Tests/twoway/Client_Task.h
+++ b/TAO/tests/DII_Collocation_Tests/twoway/Client_Task.h
@@ -19,18 +19,18 @@ class Client_Task : public ACE_Task_Base
public:
/// Constructor
- Client_Task (const char *input,
+ Client_Task (const ACE_TCHAR *input,
const char *simple_test_ior,
CORBA::ORB_ptr corb,
ACE_Thread_Manager *thr_mgr);
/// Thread entry point
int svc (void);
-
+
CORBA::ULong error_count () const;
-
+
private:
- const char *input_;
+ const ACE_TCHAR *input_;
const char *simple_test_input_;
CORBA::ORB_var corb_;
diff --git a/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp b/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp
index f2f6b63c906..cac9fada034 100644
--- a/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp
+++ b/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp
@@ -10,7 +10,7 @@ ACE_RCSID(DII_Collocation_Tests,
"$Id$")
-Server_Task::Server_Task (const char *output,
+Server_Task::Server_Task (const ACE_TCHAR *output,
const char *simple_test_output,
CORBA::ORB_ptr sorb,
ACE_Manual_Event &me,
diff --git a/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.h b/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.h
index 5d29037aadf..e2852cbecc4 100644
--- a/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.h
+++ b/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.h
@@ -21,7 +21,7 @@ class Server_Task : public ACE_Task_Base
{
public:
/// Constructor
- Server_Task (const char *output,
+ Server_Task (const ACE_TCHAR *output,
const char *simple_test_output,
CORBA::ORB_ptr sorb,
ACE_Manual_Event &me,
@@ -34,7 +34,7 @@ public:
private:
/// Output file for server IOR
- const char *output_;
+ const ACE_TCHAR *output_;
/// Output file for Simple_Test IOR
const char *simple_test_output_;