diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Pulse/SpoolingMethods.cs | 15 |
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, + } +} |
