summaryrefslogtreecommitdiff
path: root/getopt/Arg.cs
diff options
context:
space:
mode:
authorfcolin2007-02-15 14:28:12 +0000
committerfcolin2007-02-15 14:28:12 +0000
commit9d8c527211edd2bc74fa548f30f69f8d21868fef (patch)
tree01c03a0c7700ed5fce9b63771f1dbfe8bebaf1b3 /getopt/Arg.cs
parent9faf3708bd1188de84ccf33c400bfdceefc7fd1b (diff)
downloadivy-csharp-9d8c527211edd2bc74fa548f30f69f8d21868fef.zip
ivy-csharp-9d8c527211edd2bc74fa548f30f69f8d21868fef.tar.gz
ivy-csharp-9d8c527211edd2bc74fa548f30f69f8d21868fef.tar.bz2
ivy-csharp-9d8c527211edd2bc74fa548f30f69f8d21868fef.tar.xz
Parsing des argument ligne de commandes
Diffstat (limited to 'getopt/Arg.cs')
-rw-r--r--getopt/Arg.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/getopt/Arg.cs b/getopt/Arg.cs
new file mode 100644
index 0000000..0b86cad
--- /dev/null
+++ b/getopt/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 = "";
+ }
+}