aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-03-06 14:23:47 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-03-06 14:23:47 +0200
commit1d0a3a5c47a2ba4cdabb9f8a4fab694d4987083f (patch)
tree9500aca3038e50b9a8e0120dfcd183b4a81f5011 /Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs
parent745cb5da6ddf2418258892fa49f4e03b28645bed (diff)
downloadTango-1d0a3a5c47a2ba4cdabb9f8a4fab694d4987083f.tar.gz
Tango-1d0a3a5c47a2ba4cdabb9f8a4fab694d4987083f.zip
Implemented pulse TWN file.
Diffstat (limited to 'Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs')
-rw-r--r--Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs b/Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs
new file mode 100644
index 000000000..3677e0ce7
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs
@@ -0,0 +1,15 @@
+namespace Tango.Pulse
+{
+ /// <summary>
+ /// Represents a twn file spooling method.
+ /// </summary>
+ public enum SpoolingMethods
+ {
+ //Spool per segment. (default)
+ SpoolPerSegment = 0,
+ //Spool per copy.
+ SpoolPerCopy = 1,
+ //Single spool for all segments.
+ SingleSpool = 2,
+ }
+}