helpFlag.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
7
8 class helpFlag: public flag {
9 BY(CLASS(helpFlag, flag))
10
11 public:
12 const nchar* getName() const override;
13 const nchar* getDescription() const override;
14
15 protected:
16 const strings& _getRegExpr() const override;
17 res _onTake(const flagArgs& tray, cli& c, interpreter& ip, starter& s) const override;
18 };
19}
Definition: flag.hpp:15
Definition: helpFlag.hpp:8
High-level interpreter for byeol language.
Definition: interpreter.hpp:13
Program execution starter.
Definition: starter.hpp:14
Command-line interface for byeol language system.
Definition: cli.hpp:12