Interstage Application Server リファレンスマニュアル(API編)
目次 索引 前ページ次ページ

第2章 C++言語インタフェース

2.7 Contextクラス

 ここでは、Contextオブジェクトを制御するContextクラスについて説明します。

 class CORBA
 {
     typedef Context_ptr *Context;
     typedef NamedValue_ptr *NamedValue;
     typedef NVList_ptr *NVList;

     class Context
     {
     public:
         const char *context_name(CORBA::Environment &) const;
         Context_ptr parent(CORBA::Environment &) const;
         Status create_child(const char *, Context _ptr&, CORBA::Environment &);
         Status set_one_value(const char *, const Any &, CORBA::Environment &);
         Status set_values(NVList_ptr, CORBA::Environment &);
         Status get_values(
             const char *,
             Flags,
             const char *,
             NVList _ptr&,
             CORBA::Environment & );
         Status delete_values(const char *, CORBA::Environment &);
     };
 };

下へ2.7.1 CORBA::Context::context_name()
下へ2.7.2 CORBA::Context::parent()
下へ2.7.3 CORBA::Context::create_child()
下へ2.7.4 CORBA::Context::set_one_value()
下へ2.7.5 CORBA::Context::set_values()
下へ2.7.6 CORBA::Context::get_values()
下へ2.7.7 CORBA::Context::delete_values()

目次 索引 前ページ次ページ

All Rights Reserved, Copyright(C) 富士通株式会社 2005