diff options
author | gokhale <asgokhale@users.noreply.github.com> | 1998-08-27 13:27:37 +0000 |
---|---|---|
committer | gokhale <asgokhale@users.noreply.github.com> | 1998-08-27 13:27:37 +0000 |
commit | eecc583f8ed6a71423990bc0d0d22931828c4835 (patch) | |
tree | cbe9dd254d7c6a1ceb0ff30fd874182acc6da8f7 /TAO/tao/Sequence.h | |
parent | 0d2475ffcc803ead837740f5c6bfdf095ec23dbc (diff) | |
download | ATCD-eecc583f8ed6a71423990bc0d0d22931828c4835.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao/Sequence.h')
-rw-r--r-- | TAO/tao/Sequence.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/TAO/tao/Sequence.h b/TAO/tao/Sequence.h index 7290c57c073..c2f692e334b 100644 --- a/TAO/tao/Sequence.h +++ b/TAO/tao/Sequence.h @@ -243,6 +243,18 @@ public: operator const char*() const; // cast (read-only) + const char *in (void) const; + // for in parameter. + + char *&inout (void); + // for inout parameter. + + char *&out (void); + // for out parameter. + + char *_retn (void); + // for string of return type. + private: char **ptr_; // Address of string element from the parent's buffer. |