Advertisement
jsbsan

observadorDisplay

Oct 21st, 2013
1,705
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GAMBAS 0.32 KB | None | 0 0
  1. ' Gambas class file
  2.  
  3. Inherits Observador
  4.  
  5. Private distmp As New Display
  6.  
  7. Public Sub _new(pantalla As Display)
  8.  
  9.   distmp = pantalla
  10.  
  11. End
  12.  
  13. Public Sub update(temperatura As Single, humedad As Single, presion As Single, EstadoTiempo As String)
  14.  
  15.   distmp.update(temperatura, humedad, presion, EstadoTiempo)
  16.  
  17. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement