Rev 1713 | Rev 1819 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1713 | Rev 1763 | ||
---|---|---|---|
Line 3... | Line 3... | ||
3 | * DIN Is Noise is copyright (c) 2006-2021 Jagannathan Sampath
|
3 | * DIN Is Noise is copyright (c) 2006-2021 Jagannathan Sampath
|
4 | * DIN Is Noise is released under GNU Public License 2.0
|
4 | * DIN Is Noise is released under GNU Public License 2.0
|
5 | * For more information, please visit https://dinisnoise.org/
|
5 | * For more information, please visit https://dinisnoise.org/
|
6 | */
|
6 | */
|
7 | 7 | ||
8 | #ifndef __help
|
8 | #ifndef __din_help
|
9 | #define __help
|
9 | #define __din_help
|
10 | #include <string>
|
10 | #include <string>
|
11 | #include <vector>
|
11 | #include <vector>
|
12 | struct help { |
12 | struct help { |
13 | std::vector<std::string> text; |
13 | std::vector<std::string> text; |
14 | help (const std::string& fname); |
14 | help (const std::string& fname); |
15 | void operator() (); |
15 | void operator() (); |
16 | }; |
16 | }; |
17 | #endif
|
17 | #endif
|
18 | - | ||
19 | - | ||
20 | - |