Advertisement
Fhernd

Observer.cs

Mar 12th, 2013
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace HeadFirstDesignPatterns.Ch02TheObserverPattern.WeatherStation
  6. {
  7.     internal interface Observer
  8.     {
  9.         void update(float temperature, float humidity, float pressure);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement