bufferSrcFlag.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
7
8 class bufferSrcFlag: public flag {
9 BY(CLASS(bufferSrcFlag, 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 ncnt _onContinuousArgCount() const override;
19 };
20}
Definition: bufferSrcFlag.hpp:8
ncnt _onContinuousArgCount() const override
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