From a7c03cabf931b077d70c6f80ec02c7728a429f49 Mon Sep 17 00:00:00 2001 From: brunsch Date: Sun, 23 Apr 2000 04:43:59 +0000 Subject: ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch --- ace/Get_Opt.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ace/Get_Opt.h') diff --git a/ace/Get_Opt.h b/ace/Get_Opt.h index 70005adec98..e645328f0a9 100644 --- a/ace/Get_Opt.h +++ b/ace/Get_Opt.h @@ -33,8 +33,8 @@ class ACE_Export ACE_Get_Opt // This is a C++ wrapper for getopt(3c). public: ACE_Get_Opt (int argc, - ASYS_TCHAR **argv, - const ASYS_TCHAR *optstring, + ACE_TCHAR **argv, + const ACE_TCHAR *optstring, int skip_argv0 = 1, int report_errors = 0); // Initialize the internal data when the first call is made. Start @@ -82,7 +82,7 @@ public: // = Public data members (should be hidden...). - ASYS_TCHAR *optarg; + ACE_TCHAR *optarg; // For communication from to the caller. When // finds an option that takes an argument, the argument // value is returned here. @@ -106,7 +106,7 @@ public: int argc_; // Holds the count. - ASYS_TCHAR **argv_; + ACE_TCHAR **argv_; // Holds the pointer. void dump (void) const; @@ -117,7 +117,7 @@ public: private: - ASYS_TCHAR *nextchar_; + ACE_TCHAR *nextchar_; // The next char to be scanned in the option-element in which the // last option character we returned was found. This allows us to // pick up the scan where we left off. @@ -125,7 +125,7 @@ private: // If this is zero, or a null string, it means resume the scan // by advancing to the next -element. - const ASYS_TCHAR *optstring_; + const ACE_TCHAR *optstring_; // Holds the option string. }; -- cgit v1.2.1