document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Private comportamientoVolar As IVolar
  4.  
  5. Public Function getVolar() As String
  6.  
  7.   Return comportamientoVolar.Volar()
  8.  
  9. End
  10.  
  11. Public Sub setVolar(v As IVolar)
  12.  
  13.   comportamientoVolar = v
  14.  
  15. End
');