document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Create Static
  4.  
  5. Private contenido As String
  6.  
  7. Public Sub _new()
  8.  
  9.   contenido = "Eventos de Usuario\\n"
  10.  
  11. End
  12.  
  13. Public Sub setContenido(value As String)
  14.  
  15.   contenido = value
  16.  
  17. End
  18.  
  19. Public Function getContenido() As String
  20.  
  21.   Return contenido
  22.  
  23. End
');