You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
498 B
26 lines
498 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using ZwSoft.ZwCAD.DatabaseServices;
|
|
using ZwSoft.ZwCAD.Runtime;
|
|
using ZwSoft.ZwCAD.Geometry;
|
|
using ZwSoft.ZwCAD.ApplicationServices;
|
|
using ZwSoft.ZwCAD.EditorInput;
|
|
using ZwSoft.ZwCAD.Windows;
|
|
|
|
namespace HelloTeamcenter.hello
|
|
{
|
|
class MyExtension:ZwSoft.ZwCAD.Runtime.IExtensionApplication
|
|
{
|
|
public void Initialize()
|
|
{
|
|
|
|
}
|
|
public void Terminate()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|