Ejemplo n.º 1
0
 // Get_Instance() returns the singleton instance
 public static Update_Manager Get_Instance()
 {
     if (instance == null)
     {
         instance = new Update_Manager();
     }
     return(instance);
 }
Ejemplo n.º 2
0
 private Feed_Manager()
 {
     feeds = new HashSet <Feed>();
     Update_Manager.Get_Instance().Update_Tasks += Update_Feeds;
 }