summaryrefslogtreecommitdiff
path: root/getoptOLD/Arg.cs
diff options
context:
space:
mode:
authorfcolin2007-02-15 15:13:37 +0000
committerfcolin2007-02-15 15:13:37 +0000
commit52758d6ab4138dfa7cfe57e7b1ba10c6c085cb0f (patch)
tree631ee8c4ce5c8bd00385c827caf3238633315976 /getoptOLD/Arg.cs
parent26f415f8dd8d6f45b7d79dbf4f5876496ae4de4d (diff)
downloadivy-csharp-52758d6ab4138dfa7cfe57e7b1ba10c6c085cb0f.zip
ivy-csharp-52758d6ab4138dfa7cfe57e7b1ba10c6c085cb0f.tar.gz
ivy-csharp-52758d6ab4138dfa7cfe57e7b1ba10c6c085cb0f.tar.bz2
ivy-csharp-52758d6ab4138dfa7cfe57e7b1ba10c6c085cb0f.tar.xz
Renommé à distance
Diffstat (limited to 'getoptOLD/Arg.cs')
-rw-r--r--getoptOLD/Arg.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/getoptOLD/Arg.cs b/getoptOLD/Arg.cs
new file mode 100644
index 0000000..0b86cad
--- /dev/null
+++ b/getoptOLD/Arg.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Gnu
+{
+ /// <summary>
+ /// An argument for GetOpt
+ /// </summary>
+ public class Arg
+ {
+ public char Flag;
+ public bool TakesParameter = false;
+
+ public string Parameter = "";
+ }
+}