common
Class NullTransfer

Object
  extended by common:Generic
      extended by common:Transfer
          extended by common:NullTransfer

class 
Transfer:NullTransfer

This is a null transfer. You can use it anywhere a transfer is required when you don't want to actually do a transfer.


Ultra Fractal Source

Toggle UF Source Code Display

 class NullTransfer(Transfer) {
   ; This is a null transfer. You can use it anywhere a transfer
   ; is required when you don't want to actually do a transfer.
   
 public:
   func NullTransfer(Generic pparent)
     Transfer.Transfer(pparent)
   endfunc
   
 default:
   title = "Null Transfer"
   
   int param v_nulltransfer
     caption = "Version (NullTransfer)"
     default = 100
     hint = "This version parameter is used to detect when a change has been made to the formula that is incompatible with the previous version. When that happens, this field will reflect the old version number to alert you to the fact that an alternate rendering is being used."
     visible = @v_nulltransfer < 100
   endparam
 }
 


Constructor Summary
NullTransfer()
           
NullTransfer(Generic pparent)
           
 
Method Summary
 
Methods inherited from class common:Transfer
Init, Iterate, IterateSilent
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

NullTransfer

public NullTransfer(Generic pparent)

NullTransfer

public NullTransfer()