source: trunk/nom/class_c/nomtestresult.c

Last change on this file was 365, checked in by cinc, 17 years ago

Fixes and additions

File size: 1.7 KB
Line 
1/*
2 * This file was generated by the NOM IDL compiler for Voyager - DO NOT EDIT!
3 *
4 *
5 * And remember, phase 3 is near...
6 */
7/*
8 * Built from /Users/cinc/svn-sources/nom/trunk/nom/idl/nomtestresult.idl
9 */
10#ifndef NOM_NOMTestResult_IMPLEMENTATION_FILE
11#define NOM_NOMTestResult_IMPLEMENTATION_FILE
12#endif
13
14#if __OS2__
15#define INCL_DOS
16#include <os2.h>
17#endif /* __OS2__ */
18
19#include <nom.h>
20#include <nomtk.h>
21
22#include "nomstring.h"
23#include "nomtestresult.ih"
24
25NOMDLLEXPORT NOM_Scope CORBA_boolean NOMLINK impl_NOMTestResult_success(NOMTestResult* nomSelf,
26 CORBA_Environment *ev)
27{
28 NOMTestResultData* nomThis = NOMTestResultGetData(nomSelf);
29
30 return _fSuccess;
31}
32
33
34NOMDLLEXPORT NOM_Scope void NOMLINK impl_NOMTestResult_setSuccess(NOMTestResult* nomSelf,
35 const CORBA_boolean fSuccess,
36 CORBA_Environment *ev)
37{
38 NOMTestResultData* nomThis = NOMTestResultGetData(nomSelf);
39
40 _fSuccess=fSuccess;
41}
42
43
44NOMDLLEXPORT NOM_Scope void NOMLINK impl_NOMTestResult_setName(NOMTestResult* nomSelf,
45 const NOMString* nsName,
46 CORBA_Environment *ev)
47{
48 NOMTestResultData* nomThis = NOMTestResultGetData(nomSelf);
49
50 _nsTestName=nsName;
51}
52
53
54NOMDLLEXPORT NOM_Scope NOMString* NOMLINK impl_NOMTestResult_queryName(NOMTestResult* nomSelf,
55 CORBA_Environment *ev)
56{
57 NOMTestResultData* nomThis = NOMTestResultGetData(nomSelf);
58
59 return _nsTestName;
60}
61
Note: See TracBrowser for help on using the repository browser.