-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption.cpp
42 lines (37 loc) · 847 Bytes
/
option.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//@ {"targets":[{"name":"option.o","type":"object"}]}
#include "option.hpp"
#include <cstdio>
using namespace Alice;
void Option::help(bool group_header,FILE* dest) const noexcept
{
if(group_header)
{groupHeaderPrint(dest);}
fprintf(dest,"--%s",r_name);
switch(m_mult)
{
case Multiplicity::ZERO_OR_ONE:
fprintf(dest,"[=%s]",r_type_name);
break;
case Multiplicity::ZERO_OR_MORE:
fprintf(dest,"[=%s,...]",r_type_name);
break;
case Multiplicity::ONE:
fprintf(dest,"=%s",r_type_name);
break;
case Multiplicity::ONE_OR_MORE:
fprintf(dest,"=%s,...",r_type_name);
break;
}
fprintf(dest,"\n %s\n\n",r_description);
}
void Option::groupHeaderPrint(FILE* dest) const noexcept
{
fprintf(dest,"\n%s\n",r_group);
auto x=r_group;
while(*x!='\0')
{
putc('-',dest);
++x;
}
fprintf(dest,"\n\n");
}