diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-24 13:28:35 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-24 13:28:35 +0000 |
commit | 098294d3ff4a69abb8fb7d023db325297f7e43af (patch) | |
tree | 4353df24a7f8e3e9a0a6fb49eb3b45d6fd7ea05c /TAO/tao/NVList.i | |
parent | 6a0480358b46379cadd77498043c3ad69f57cb8e (diff) | |
download | ATCD-098294d3ff4a69abb8fb7d023db325297f7e43af.tar.gz |
#include the .i file in the .h/.cpp file instead of corba.h
Diffstat (limited to 'TAO/tao/NVList.i')
-rw-r--r-- | TAO/tao/NVList.i | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/TAO/tao/NVList.i b/TAO/tao/NVList.i index 9cf97b1efcb..ae46118499b 100644 --- a/TAO/tao/NVList.i +++ b/TAO/tao/NVList.i @@ -48,16 +48,3 @@ CORBA_NVList::count (void) const { return this->max_; } - -ACE_INLINE CORBA::NamedValue_ptr -CORBA_NVList::item (CORBA::ULong n, CORBA::Environment &env) -{ - env.clear (); - if (n >= this->max_) // 0 based indexing - { - env.exception (new CORBA::TypeCode::Bounds ()); - return 0; - } - else - return &this->values_ [n]; -} |