1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
/*
* File: sidl_PostconditionViolation_Impl.c
* Symbol: sidl.PostconditionViolation-v0.9.1
* Symbol Type: class
* Babel Version: 0.10.2
* Release: $Name: $
* Revision: @(#) $Id: $
* Description: Server-side implementation for sidl.PostconditionViolation
*
* Copyright (c) 2000-2002, The Regents of the University of California.
* Produced at the Lawrence Livermore National Laboratory.
* Written by the Components Team <components@llnl.gov>
* All rights reserved.
*
* This file is part of Babel. For more information, see
* http://www.llnl.gov/CASC/components/. Please read the COPYRIGHT file
* for Our Notice and the LICENSE file for the GNU Lesser General Public
* License.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License (as published by
* the Free Software Foundation) version 2.1 dated February 1999.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
* conditions of the GNU Lesser General Public License for more details.
*
* You should have recieved a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* WARNING: Automatically generated; only changes within splicers preserved
*
* babel-version = 0.10.2
*/
/*
* DEVELOPERS ARE EXPECTED TO PROVIDE IMPLEMENTATIONS
* FOR THE FOLLOWING METHODS BETWEEN SPLICER PAIRS.
*/
/*
* Symbol "sidl.PostconditionViolation" (version 0.9.1)
*
* <code>PostconditionViolation</code> provides the basic marker for
* a post-condition exception.
*/
#include "sidl_PostconditionViolation_Impl.h"
#line 52 "../../../babel/runtime/sidl/sidl_PostconditionViolation_Impl.c"
/* DO-NOT-DELETE splicer.begin(sidl.PostconditionViolation._includes) */
/* Put additional includes or other arbitrary code here... */
/* DO-NOT-DELETE splicer.end(sidl.PostconditionViolation._includes) */
#line 56 "sidl_PostconditionViolation_Impl.c"
/*
* Static class initializer called exactly once before any user-defined method is dispatched
*/
#undef __FUNC__
#define __FUNC__ "impl_sidl_PostconditionViolation__load"
void
impl_sidl_PostconditionViolation__load(
void)
{
#line 67 "../../../babel/runtime/sidl/sidl_PostconditionViolation_Impl.c"
/* DO-NOT-DELETE splicer.begin(sidl.PostconditionViolation._load) */
/* Insert implementation here: sidl.PostconditionViolation._load (static class initializer method) */
/* DO-NOT-DELETE splicer.end(sidl.PostconditionViolation._load) */
#line 73 "sidl_PostconditionViolation_Impl.c"
}
/*
* Class constructor called when the class is created.
*/
#undef __FUNC__
#define __FUNC__ "impl_sidl_PostconditionViolation__ctor"
void
impl_sidl_PostconditionViolation__ctor(
/* in */ sidl_PostconditionViolation self)
{
#line 82 "../../../babel/runtime/sidl/sidl_PostconditionViolation_Impl.c"
/* DO-NOT-DELETE splicer.begin(sidl.PostconditionViolation._ctor) */
/* Insert the implementation of the constructor method here... */
/* DO-NOT-DELETE splicer.end(sidl.PostconditionViolation._ctor) */
#line 90 "sidl_PostconditionViolation_Impl.c"
}
/*
* Class destructor called when the class is deleted.
*/
#undef __FUNC__
#define __FUNC__ "impl_sidl_PostconditionViolation__dtor"
void
impl_sidl_PostconditionViolation__dtor(
/* in */ sidl_PostconditionViolation self)
{
#line 98 "../../../babel/runtime/sidl/sidl_PostconditionViolation_Impl.c"
/* DO-NOT-DELETE splicer.begin(sidl.PostconditionViolation._dtor) */
/* Insert the implementation of the destructor method here... */
/* DO-NOT-DELETE splicer.end(sidl.PostconditionViolation._dtor) */
#line 108 "sidl_PostconditionViolation_Impl.c"
}
|