Difference between revisions of "Uno/Cpp/Spec/Environment AntiGuard"

From Apache OpenOffice Wiki
< Uno‎ | Cpp‎ | Spec
Jump to: navigation, search
m (Splitted categories.)
m (Updated state.)
Line 1: Line 1:
Type: specification State: draft
+
Type: Specification State: Evolving  Availability: URE 1.3 (SRC680_m212)
  
 
==Feature==
 
==Feature==
Line 23: Line 23:
  
  
[[Category:Draft]]
+
[[Category:Evolving]]
 
[[Category:Spec]]
 
[[Category:Spec]]
 
[[Category:Uno]]
 
[[Category:Uno]]
 
[[Category:Uno:Cpp]]
 
[[Category:Uno:Cpp]]

Revision as of 10:19, 23 May 2007

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

Feature

An AntiGuard for C++ Uno environments.

API

[cpp] cppu/EnvGuards.hxx

 class cppu::AntiEnvGuard
 {
   public:
     AntiEnvGuard(void);
     ~AntiEnvGuard(void) ;
 };

Usage Example

#include <cppu/EnvGuards.hxx>
...
{
  cppu::AntiEnvGuard antiEnvGuard;
  // From here onwards the previous environment has been left, at the end of the block it gets re-entered.
  ...
}


Dependencies

Personal tools