summaryrefslogtreecommitdiff
path: root/getopt/Arg.cs
diff options
context:
space:
mode:
Diffstat (limited to 'getopt/Arg.cs')
-rw-r--r--getopt/Arg.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/getopt/Arg.cs b/getopt/Arg.cs
deleted file mode 100644
index 0b86cad..0000000
--- a/getopt/Arg.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-
-namespace Gnu
-{
- /// <summary>
- /// An argument for GetOpt
- /// </summary>
- public class Arg
- {
- public char Flag;
- public bool TakesParameter = false;
-
- public string Parameter = "";
- }
-}