fileFlag.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
7
8 class fileFlag: public flag {
9 BY(CLASS(fileFlag, flag))
10
11 public:
12 const nchar* getName() const override;
13
14 const nchar* getDescription() const override;
15
16 protected:
17 const strings& _getRegExpr() const override;
18
19 res _onTake(const flagArgs& tray, cli& c, interpreter& ip, starter& s) const override;
20 };
21}
Definition: fileFlag.hpp:8
Definition: flag.hpp:15
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