Archived
1
0

Initial import

This commit is contained in:
2009-01-29 23:44:45 +01:00
commit 7028323a80
15 changed files with 922 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
// Output.cs created with MonoDevelop at 4:40 PM 1/29/2009
// @author mbirth
using System;
namespace vampi {
public abstract class Output {
public bool requestAbort = false;
public Output() {
}
public virtual void doOutput() {
}
}
}