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
|
!
! File: ExceptionTest_TooDeepException_Impl.F90
! Symbol: ExceptionTest.TooDeepException-v1.0
! Symbol Type: class
! Babel Version: 0.10.2
! Description: Server-side implementation for ExceptionTest.TooDeepException
!
! WARNING: Automatically generated; only changes within splicers preserved
!
! babel-version = 0.10.2
!
!
! Symbol "ExceptionTest.TooDeepException" (version 1.0)
!
! This exception is thrown if the Fibonacci recursion is too deep.
!
#include "sidl_SIDLException_fAbbrev.h"
#include "ExceptionTest_TooDeepException_fAbbrev.h"
#include "ExceptionTest_FibException_fAbbrev.h"
#include "sidl_ClassInfo_fAbbrev.h"
#include "sidl_BaseInterface_fAbbrev.h"
#include "sidl_BaseException_fAbbrev.h"
#include "sidl_BaseClass_fAbbrev.h"
! DO-NOT-DELETE splicer.begin(_miscellaneous_code_start)
! Insert extra code here...
! DO-NOT-DELETE splicer.end(_miscellaneous_code_start)
!
! Class constructor called when the class is created.
!
recursive subroutine TooDeepExcep__ctor1ake1o4cbo_mi(self)
use ExceptionTest_TooDeepException
use ExceptionTest_TooDeepException_impl
! DO-NOT-DELETE splicer.begin(ExceptionTest.TooDeepException._ctor.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(ExceptionTest.TooDeepException._ctor.use)
implicit none
type(ExceptionTest_TooDeepException_t) :: self ! in
! DO-NOT-DELETE splicer.begin(ExceptionTest.TooDeepException._ctor)
! Insert the implementation here...
! DO-NOT-DELETE splicer.end(ExceptionTest.TooDeepException._ctor)
end subroutine TooDeepExcep__ctor1ake1o4cbo_mi
!
! Class destructor called when the class is deleted.
!
recursive subroutine TooDeepExcep__dtor3oskxzdn6p_mi(self)
use ExceptionTest_TooDeepException
use ExceptionTest_TooDeepException_impl
! DO-NOT-DELETE splicer.begin(ExceptionTest.TooDeepException._dtor.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(ExceptionTest.TooDeepException._dtor.use)
implicit none
type(ExceptionTest_TooDeepException_t) :: self ! in
! DO-NOT-DELETE splicer.begin(ExceptionTest.TooDeepException._dtor)
! Insert the implementation here...
! DO-NOT-DELETE splicer.end(ExceptionTest.TooDeepException._dtor)
end subroutine TooDeepExcep__dtor3oskxzdn6p_mi
!
! Static class initializer called exactly once before any user-defined method is dispatched
!
recursive subroutine TooDeepExcep__load92bhnpbj8x_mi()
use ExceptionTest_TooDeepException
use ExceptionTest_TooDeepException_impl
! DO-NOT-DELETE splicer.begin(ExceptionTest.TooDeepException._load.use)
! Insert use statements here...
! DO-NOT-DELETE splicer.end(ExceptionTest.TooDeepException._load.use)
implicit none
! DO-NOT-DELETE splicer.begin(ExceptionTest.TooDeepException._load)
! Insert the implementation here...
! DO-NOT-DELETE splicer.end(ExceptionTest.TooDeepException._load)
end subroutine TooDeepExcep__load92bhnpbj8x_mi
! DO-NOT-DELETE splicer.begin(_miscellaneous_code_end)
! Insert extra code here...
! DO-NOT-DELETE splicer.end(_miscellaneous_code_end)
|