using SolidWorks.Interop.sldworks; using System.Collections; namespace PdmSwPlugin.Main.EventHandler { public interface IEventAttacher { // Hashtable OpenDocs { get; } ISldWorks SwApp { get; } bool AttachEventHandlers(); bool AttachModelDocEventHandler(ModelDoc2 modDoc); bool DetachEventHandlers(); bool DetachModelEventHandler(ModelDoc2 modDoc); } }