File: n_svc_dw_base.sru
Size: 1163
Date: Sun, 03 Feb 2019 16:54:22 +0100
$PBExportHeader$n_svc_dw_base.sru
forward
global type n_svc_dw_base from n_svc_base
end type
end forward

global type n_svc_dw_base from n_svc_base
end type
global n_svc_dw_base n_svc_dw_base

type variables
u_dw idw_client

end variables

forward prototypes
public subroutine of_register (u_dw adw_client)
end prototypes

public subroutine of_register (u_dw adw_client);// -----------------------------------------------------------------------------
// SCRIPT:     n_svc_dw_base.of_Register
//
// PURPOSE:    This function saves a reference to the client datawindow.
//
// ARGUMENTS:  adw_client - The client datawindow.
//
// DATE        CHANGED BY  DESCRIPTION OF CHANGE / REASON
// ----------  ----------  -----------------------------------------------------
// 11/03/2006  Roland S    Initial creation
// -----------------------------------------------------------------------------

// save reference to datawindow
idw_client = adw_client

// call descendant initialization
of_Initialize()

end subroutine

on n_svc_dw_base.create
call super::create
end on

on n_svc_dw_base.destroy
call super::destroy
end on