summaryrefslogtreecommitdiff
path: root/ace/ARGV.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/ARGV.i')
-rw-r--r--ace/ARGV.i32
1 files changed, 0 insertions, 32 deletions
diff --git a/ace/ARGV.i b/ace/ARGV.i
deleted file mode 100644
index 5bb9d242252..00000000000
--- a/ace/ARGV.i
+++ /dev/null
@@ -1,32 +0,0 @@
-/* -*- 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_;
-}