Completed the command line parser, then decided while adding result validation to the unit tests that the parser should be greedy (and accept option initiators within option names) - I don't like the way the parser code turned out anyway, so I'll rewrite soon
git-svn-id: file:///srv/devel/repo-conversion/nusu@107 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
ffba112786
commit
9c40abe10a
6 changed files with 676 additions and 148 deletions
13
Documents/CommandLine.txt
Normal file
13
Documents/CommandLine.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
struct CommandLine {
|
||||
[Option]
|
||||
bool? Option;
|
||||
[Option]
|
||||
int? Width;
|
||||
[Option]
|
||||
TypeCode Code;
|
||||
[Values]
|
||||
string[] Values;
|
||||
}
|
||||
*/
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue