Rev 2009 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1528 | jag | 1 | /* |
2 | * help.h |
||
2097 | jag | 3 | * DIN Is Noise is copyright (c) 2006-2024 Jagannathan Sampath |
1713 | jag | 4 | * DIN Is Noise is released under GNU Public License 2.0 |
1528 | jag | 5 | * For more information, please visit https://dinisnoise.org/ |
6 | */ |
||
7 | |||
1819 | jag | 8 | #ifndef __help_h |
9 | #define __help_h |
||
1528 | jag | 10 | #include <string> |
11 | #include <vector> |
||
12 | struct help { |
||
1965 | jag | 13 | std::vector<std::string> lines; |
1528 | jag | 14 | help (const std::string& fname); |
15 | void operator() (); |
||
16 | }; |
||
17 | #endif |