From 0e49389337be86641451a5c36c24bf742fe97523 Mon Sep 17 00:00:00 2001 From: "William R. Otte" Date: Mon, 24 Jul 2006 15:50:21 +0000 Subject: Repo restructuring --- TAO/tao/NVList_Adapter.h | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 TAO/tao/NVList_Adapter.h (limited to 'TAO/tao/NVList_Adapter.h') diff --git a/TAO/tao/NVList_Adapter.h b/TAO/tao/NVList_Adapter.h new file mode 100644 index 00000000000..e9bc13af0ec --- /dev/null +++ b/TAO/tao/NVList_Adapter.h @@ -0,0 +1,64 @@ +// -*- C++ -*- + +//============================================================================= +/** + * @file NVList_Adapter.h + * + * $Id$ + * + * @author Johnny Willemsen + */ +//============================================================================= + +#ifndef TAO_NVLIST_ADAPTER_H +#define TAO_NVLIST_ADAPTER_H + +#include /**/ "ace/pre.h" + +#include "tao/TAO_Export.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +#include "tao/Basic_Types.h" + +#include "ace/Service_Object.h" +#include "ace/CORBA_macros.h" + +TAO_BEGIN_VERSIONED_NAMESPACE_DECL + +namespace CORBA +{ + class NVList; + typedef NVList *NVList_ptr; + + class NamedValue; + typedef NamedValue *NamedValue_ptr; + + class Environment; +} + +/** + * @class TAO_NVList_Adapter + */ +class TAO_Export TAO_NVList_Adapter : public ACE_Service_Object +{ +public: + virtual ~TAO_NVList_Adapter (void); + + virtual void create_list ( + CORBA::Long count, + CORBA::NVList_ptr &new_list + ACE_ENV_ARG_DECL) = 0; + + virtual void create_named_value ( + CORBA::NamedValue_ptr &nv + ACE_ENV_ARG_DECL) = 0; + +}; + +TAO_END_VERSIONED_NAMESPACE_DECL + +#include /**/ "ace/post.h" +#endif /* TAO_NVLIST_ADAPTER_H */ -- cgit v1.2.1