diff options
author | eea1 <eea1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-14 18:53:19 +0000 |
---|---|---|
committer | eea1 <eea1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-14 18:53:19 +0000 |
commit | 735a204f4627666f093a91b17cc6f7a342bf1550 (patch) | |
tree | 7de28c90b4c979beac9fb03ba4bcc4652a8f5248 /ace/ARGV.h | |
parent | 6ee472bdf41822583b34c85e3c903f364a14115a (diff) | |
download | ATCD-735a204f4627666f093a91b17cc6f7a342bf1550.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/ARGV.h')
-rw-r--r-- | ace/ARGV.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ace/ARGV.h b/ace/ARGV.h index 27e4068bf98..9f96ea40c46 100644 --- a/ace/ARGV.h +++ b/ace/ARGV.h @@ -53,7 +53,7 @@ public: // Destructor. // = Accessor arguments. - const char *operator[] (int index); + const char *operator[] (size_t index); // Returns the <index>th string in the ARGV array. char **argv (void); @@ -91,18 +91,18 @@ public: private: - int substitute_env_args_; - // Replace args with environment variable values? - - int state_; - // Current state marker - int create_buf_from_queue(void); // Creates buf_ from the queue, deletes previous buf_ void string_to_array(void); // Converts buf_ into the char *argv[] format + int substitute_env_args_; + // Replace args with environment variable values? + + int state_; + // Current state marker + size_t argc_; // Number of arguments in the ARGV array. |