12345678910111213141516171819202122232425262728293031323334353637 |
- $PBExportHeader$nvo_pipeline.sru
- $PBExportComments$自定义管道
- forward
- global type nvo_pipeline from pipeline
- end type
- end forward
- global type nvo_pipeline from pipeline
- end type
- global nvo_pipeline nvo_pipeline
- type variables
- long ul_rowscount
- boolean ub_showprocess
- end variables
- event pipemeter;if isvalid(w_sys_wait_2jdt) then
- if ub_showprocess then
- w_sys_wait_2jdt.wf_inc2(rowswritten) //进度1
- end if
- end if
- end event
- on nvo_pipeline.create
- call pipeline::create
- TriggerEvent( this, "constructor" )
- end on
- on nvo_pipeline.destroy
- call pipeline::destroy
- TriggerEvent( this, "destructor" )
- end on
|