2004-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System / System.ComponentModel.Design.Serialization / IDesignerLoaderService.cs
1 // System.ComponentModel.Design.Serialization.IDesignerLoaderService.cs
2 //
3 // Author:
4 //      Alejandro Sánchez Acosta   <raciel@gnome.org>
5 //
6 // (C) Alejandro Sánchez Acosta
7 //
8
9 using System.Collections;
10
11 namespace System.ComponentModel.Design.Serialization
12 {
13         public interface IDesignerLoaderService
14         {
15                 void AddLoadDependency();
16
17                 void DependentLoadComplete (bool successful, ICollection errorCollection);
18
19                 bool Reload();
20         }
21 }