Difference between revisions of "Uno/Cpp/Spec/Shield Helpers"

From Apache OpenOffice Wiki
< Uno‎ | Cpp‎ | Spec
Jump to: navigation, search
m (API: Fixed "code" tag ...)
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
version: {{REVISIONID}} <br>
+
Type: Specification  State: Evolving  Availability: URE 1.3 (SRC680_m212)
state:   draft <br>
+
type:   specification <br>
+
  
== Shield Helpers ==
+
==Feature==
 +
Functions for easily mapping objects to or from the thread-safe C++ environment.
  
;Feature: Functions for easily mapping objects out or into the current environment.
+
==API==
 +
<source lang="cpp">
 +
cppu/Shield.hxx
  
;Rationale:
+
  namespace cssu = com::sun::star::uno;
  
;API
+
  template<class T> inline T * cppu::shield (T * pT);
: <code>template<class T> inline com::sun::star::uno::Reference<T> shield(T * pT)</code>
+
  template<class T> inline T * cppu::unshield(T * pT);
: <code>template<class T> inline com::sun::star::uno::Reference<T> shield(com::sun::star::uno::Reference<T> const & rT)</code>
+
  inline void cppu::shieldAny  (cssu::Any const & any, cssu::Any * res);
: <code>template<class T> inline com::sun::star::uno::Reference<T> unshield(T * pT)</code>
+
  inline void cppu::unshieldAny(cssu::Any const & any, cssu::Any * res);
: <code>template<class T> inline com::sun::star::uno::Reference<T> unshield(com::sun::star::uno::Reference<T> const & rT)</code>
+
</source>
: <code>com::sun::star::uno::Any shieldAny  (com::sun::star::uno::Any const & any)</code>
+
: <code>com::sun::star::uno::Any unshieldAny(com::sun::star::uno::Any const & any)</code>
+
  
;Dependencies: Binary UNO / Environment Stacks
+
==Dependencies==
 
+
* [[Uno/Cpp/Spec/Environment Stack]]
;Compatibility Issues: None.
+
  
 +
[[Category:Evolving]]
 +
[[Category:Spec]]
 +
[[Category:Uno]]
 
[[Category:Uno:Cpp]]
 
[[Category:Uno:Cpp]]
 +
[[Category:Multi-Threading]]

Latest revision as of 21:02, 23 March 2008

Type: Specification State: Evolving Availability: URE 1.3 (SRC680_m212)

Feature

Functions for easily mapping objects to or from the thread-safe C++ environment.

API

cppu/Shield.hxx
 
  namespace cssu = com::sun::star::uno;
 
  template<class T> inline T * cppu::shield  (T * pT);
  template<class T> inline T * cppu::unshield(T * pT);
  inline void cppu::shieldAny  (cssu::Any const & any, cssu::Any * res);
  inline void cppu::unshieldAny(cssu::Any const & any, cssu::Any * res);

Dependencies

Personal tools