diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-23 04:43:59 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-04-23 04:43:59 +0000 |
commit | f40cc79fed36173f3588f26d7bec8ee7705dc153 (patch) | |
tree | 61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/Get_Opt.h | |
parent | 2afe8d4640d7b30bfe959c16212ea87df8e6ec7c (diff) | |
download | ATCD-f40cc79fed36173f3588f26d7bec8ee7705dc153.tar.gz |
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Get_Opt.h')
-rw-r--r-- | ace/Get_Opt.h | 12 |
1 files changed, 6 insertions, 6 deletions
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 <operator()> to the caller. When // <operator()> finds an option that takes an argument, the argument // value is returned here. @@ -106,7 +106,7 @@ public: int argc_; // Holds the <argc> count. - ASYS_TCHAR **argv_; + ACE_TCHAR **argv_; // Holds the <argv> 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 <argv>-element. - const ASYS_TCHAR *optstring_; + const ACE_TCHAR *optstring_; // Holds the option string. }; |