summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool/ServerApp.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-09-16 11:10:20 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-09-16 11:10:20 +0000
commitd2a70a512696f4e1769404288a62d9f875b20dc4 (patch)
tree19c8d212046ec43a487b1ecb519b9a9773e919f8 /TAO/examples/CSD_Strategy/ThreadPool/ServerApp.cpp
parent82ec591f8faf53ac8c66038698fff229998f2d1e (diff)
downloadATCD-d2a70a512696f4e1769404288a62d9f875b20dc4.tar.gz
Tue Sep 16 11:06:00 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool/ServerApp.cpp')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool/ServerApp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool/ServerApp.cpp b/TAO/examples/CSD_Strategy/ThreadPool/ServerApp.cpp
index f68024b161f..fd20301060f 100644
--- a/TAO/examples/CSD_Strategy/ThreadPool/ServerApp.cpp
+++ b/TAO/examples/CSD_Strategy/ThreadPool/ServerApp.cpp
@@ -22,7 +22,7 @@ ServerApp::~ServerApp()
int
-ServerApp::run (int argc, char* argv[])
+ServerApp::run (int argc, ACE_TCHAR* argv[])
{
CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);
@@ -169,11 +169,11 @@ ServerApp::run (int argc, char* argv[])
int
-ServerApp::parse_args(int argc, char* argv[])
+ServerApp::parse_args(int argc, ACE_TCHAR* argv[])
{
this->exe_name_ = argv[0];
- ACE_Get_Opt get_opts(argc, argv, "o:n:");
+ ACE_Get_Opt get_opts(argc, argv, ACE_TEXT("o:n:"));
int c;