summaryrefslogtreecommitdiff
path: root/ace/ARGV.i
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
commita5fdebc5f6375078ec1763850a4ca23ec7fe6458 (patch)
treebcf0a25c3d45a209a6e3ac37b233a4812f29c732 /ace/ARGV.i
downloadATCD-a5fdebc5f6375078ec1763850a4ca23ec7fe6458.tar.gz
Initial revision
Diffstat (limited to 'ace/ARGV.i')
-rw-r--r--ace/ARGV.i32
1 files changed, 32 insertions, 0 deletions
diff --git a/ace/ARGV.i b/ace/ARGV.i
new file mode 100644
index 00000000000..5bb9d242252
--- /dev/null
+++ b/ace/ARGV.i
@@ -0,0 +1,32 @@
+/* -*- C++ -*- */
+// $Id$
+
+// ARGV.i
+
+ACE_INLINE size_t
+ACE_ARGV::argc (void) const
+{
+ ACE_TRACE ("ACE_ARGV::argc");
+ return this->argc_;
+}
+
+ACE_INLINE char *
+ACE_ARGV::buf (void) const
+{
+ ACE_TRACE ("ACE_ARGV::buf");
+ return this->buf_;
+}
+
+ACE_INLINE char *
+ACE_ARGV::operator[] (int i) const
+{
+ ACE_TRACE ("ACE_ARGV::operator[]");
+ return this->argv_[i];
+}
+
+ACE_INLINE char **
+ACE_ARGV::argv (void) const
+{
+ ACE_TRACE ("ACE_ARGV::argv");
+ return this->argv_;
+}