Skip to content

Commit aa2c17f

Browse files
committed
add base command snoop
1 parent a77645b commit aa2c17f

11 files changed

+65
-2
lines changed

CADPythonShell/IronPythonConsoleCommand.cs renamed to CADPythonShell/Command/IronPythonConsoleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace CADPythonShell
1313
{
14-
public class IronPythonConsoleCommand
14+
public class IronPythonConsoleCommand : CadCommand
1515
{
1616
/// <summary>
1717
/// Open a window to let the user enter python code.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace CADPythonShell;
2+
3+
public class SnoopByHanderCommand : CadCommand
4+
{
5+
public void Execute()
6+
{
7+
throw new NotImplementedException();
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace CADPythonShell;
2+
3+
public class SnoopDBCommand : CadCommand
4+
{
5+
public void Execute()
6+
{
7+
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace CADPythonShell;
2+
3+
public class SnoopEditorCommand : CadCommand
4+
{
5+
public void Execute()
6+
{
7+
throw new NotImplementedException();
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace CADPythonShell;
2+
3+
public class SnoopEntitiesCommand : CadCommand
4+
{
5+
public void Execute()
6+
{
7+
throw new NotImplementedException();
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace CADPythonShell;
2+
3+
public class SnoopEntitiesNestedCommand : CadCommand
4+
{
5+
public void Execute()
6+
{
7+
throw new NotImplementedException();
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace CADPythonShell;
2+
3+
public class SnoopEventsCommand : CadCommand
4+
{
5+
public void Execute()
6+
{
7+
throw new NotImplementedException();
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace CADPythonShell;
2+
3+
public class TestFrameworkCommand : CadCommand
4+
{
5+
public void Execute()
6+
{
7+
8+
}
9+
}

0 commit comments

Comments
 (0)