Rev 1713 | Rev 1819 | 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 |
||
1712 | jag | 3 | * DIN Is Noise is copyright (c) 2006-2021 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 | |||
1763 | jag | 8 | #ifndef __din_help |
9 | #define __din_help |
||
1528 | jag | 10 | #include <string> |
11 | #include <vector> |
||
12 | struct help { |
||
13 | std::vector<std::string> text; |
||
14 | help (const std::string& fname); |
||
15 | void operator() (); |
||
16 | }; |
||
17 | #endif |