Advertisement
jsbsan

LogSingleton

Dec 15th, 2013
1,845
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GAMBAS 0.29 KB | None | 0 0
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement