summaryrefslogtreecommitdiff
path: root/apps/Gateway/Peer/Options.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-16 21:19:02 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-16 21:19:02 +0000
commit40fdc8a404e75ab03b68cc62e9987cf208fd8c30 (patch)
tree37d9c4d3abe4aefd8a34ed797883dd2cd4862ca7 /apps/Gateway/Peer/Options.h
parentc254b281f1b9a4ca19dd0c3ee73a0654a7718909 (diff)
downloadATCD-40fdc8a404e75ab03b68cc62e9987cf208fd8c30.tar.gz
This commit was manufactured by cvs2svn to create branchtypecode-overhaul
'typecode-overhaul'.
Diffstat (limited to 'apps/Gateway/Peer/Options.h')
-rw-r--r--apps/Gateway/Peer/Options.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/Gateway/Peer/Options.h b/apps/Gateway/Peer/Options.h
index bc872fe7df4..371b043deac 100644
--- a/apps/Gateway/Peer/Options.h
+++ b/apps/Gateway/Peer/Options.h
@@ -39,7 +39,7 @@ public:
static Options *instance (void);
// Return Singleton.
- void parse_args (int argc, ACE_TCHAR *argv[]);
+ void parse_args (int argc, char *argv[]);
// Parse the arguments and set the options.
// = Accessor methods.
@@ -64,7 +64,7 @@ public:
// The connector port number, i.e., the one that we use to actively
// establish connections with a gatewayd and create a Consumer.
- const ACE_TCHAR *connector_host (void) const;
+ const char *connector_host (void) const;
// Our connector port host, i.e., the host running the gatewayd
// process.
@@ -119,7 +119,7 @@ private:
// The connector port number, i.e., the one that we use to actively
// establish connections with a gatewayd and create a Consumer.
- const ACE_TCHAR *connector_host_;
+ const char *connector_host_;
// Our connector host, i.e., where the gatewayd process is running.
long timeout_;