This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/ref/xcad-examples/IssuesManager/cs/SwAddIn/IssuesManagerSwAddIn.cs
2022-10-15 19:16:08 +02:00

27 lines
646 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace XCad.Examples.IssuesManager.SwAddIn
{
[ComVisible(true)]
[Guid("E6781AD3-A939-4102-83DB-961FF5881985")]
public class IssuesManagerSwAddIn : Xarial.XCad.SolidWorks.SwAddInEx
{
private IssuesManagerController m_Controller;
public override void OnConnect()
{
m_Controller = new IssuesManagerController(this);
}
public override void OnDisconnect()
{
m_Controller.Dispose();
}
}
}