summaryrefslogtreecommitdiff
path: root/getopt/Arg.cs
diff options
context:
space:
mode:
authorfcolin2007-02-15 15:14:02 +0000
committerfcolin2007-02-15 15:14:02 +0000
commit56650b6075ad93b000ee2bc53a8ef8fb96077828 (patch)
treeb484590598022aa268470baf7030de42be8ed7c2 /getopt/Arg.cs
parent52758d6ab4138dfa7cfe57e7b1ba10c6c085cb0f (diff)
downloadivy-csharp-56650b6075ad93b000ee2bc53a8ef8fb96077828.zip
ivy-csharp-56650b6075ad93b000ee2bc53a8ef8fb96077828.tar.gz
ivy-csharp-56650b6075ad93b000ee2bc53a8ef8fb96077828.tar.bz2
ivy-csharp-56650b6075ad93b000ee2bc53a8ef8fb96077828.tar.xz
les Programmes en mode console IvyPerf et autres
utilise cette lib pour extraires les argument ligne de commande
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 = "";
+ }
+}