Difference between revisions of "Uno/Cpp/Spec/Testhelper Objectfactory"

From Apache OpenOffice Wiki
< Uno‎ | Cpp‎ | Spec
Jump to: navigation, search
(moved from udk.openoffice.org)
 
m (Updated.)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
author[[User:Kr|Kr]] <br>
+
Type: Specification State: draft
version: {{REVISIONID}} <br>
+
state:  draft         <br>
+
created: 01/30/2006    <br>
+
type:    specification  <br>
+
  
== C++ UNO Testhelper ==
+
==Feature==
=== Object Factory ===
+
A factory for creating arbitrary test objects.
  
; Feature
+
==API==
: A factory for creating arbitrary test objects.
+
<code>[cpp]
 +
#include "ObjectFactory/ObjectFactory.hxx"
  
; Rationale :
+
void * createObject(rtl::OUString const & envDcp, Callee * pCallee);
 +
void  callObject  (rtl::OUString const & envDcp, void *);
 +
</code>
  
; API
+
==Dependencies==
: <code>void * createObject(rtl::OUString const & envDcp, Callee * pCallee);</code>
+
* [[Uno/Cpp|C++ Uno]]
: <code>void  callObject  (rtl::OUString const & envDcp, void *);</code>
+
  
; Compatibility Issues: None.
 
  
; Dependencies
+
[[Category:Draft]]
:* C++ UNO Runtime
+
[[Category:Spec]]
 +
[[Category:Uno]]
 +
[[Category:Uno:Cpp]]

Latest revision as of 09:57, 9 February 2007

Type: Specification State: draft

Feature

A factory for creating arbitrary test objects.

API

[cpp]

  1. include "ObjectFactory/ObjectFactory.hxx"

void * createObject(rtl::OUString const & envDcp, Callee * pCallee); void callObject (rtl::OUString const & envDcp, void *);

Dependencies

Personal tools