Rev 1712 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1528 | jag | 1 | /* |
2 | * help.h |
||
3 | * DIN Is Noise is copyright (c) 2006-2020 Jagannathan Sampath |
||
4 | * For more information, please visit https://dinisnoise.org/ |
||
5 | */ |
||
6 | |||
7 | #ifndef __help |
||
8 | #define __help |
||
9 | #include <string> |
||
10 | #include <vector> |
||
11 | struct help { |
||
12 | std::vector<std::string> text; |
||
13 | help (const std::string& fname); |
||
14 | void operator() (); |
||
15 | }; |
||
16 | #endif |
||
17 | |||
18 | |||
19 |