username 5 years ago
parent
commit
cd725747cb
1 changed files with 38 additions and 0 deletions
  1. 38 0
      SmartSEMControl/HardwareInterface.cs

+ 38 - 0
SmartSEMControl/HardwareInterface.cs

@@ -0,0 +1,38 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace SmartSEMControl
+{
+    interface SEMControl
+    {
+        //样品台的控制
+        
+    }
+
+    interface FIBControl
+    {
+        //FIB的控制
+
+    }
+
+    interface PtControl
+    {
+        //Pt的控制
+
+    }
+
+    interface StageControl
+    {
+        //样品台控制
+
+    }
+
+    interface CommonMsg
+    {
+        //通用的信息
+
+    }
+}