Loading...
Searching...
No Matches
fileFlag.hpp
Go to the documentation of this file.
1
2
#pragma once
3
4
#include "flagStacker/flag/flag.hpp"
5
#include "
frontend/common/dep.hpp
"
6
7
namespace
by {
8
9
struct
cli;
10
21
class
fileFlag
:
public
flag {
22
BY(ME(
fileFlag
, flag))
23
24
public
:
25
fileFlag
(
cli
&
c
);
26
27
public
:
28
const
nchar
* getName()
const override
;
29
30
const
nchar
* getDescription()
const override
;
31
32
protected
:
33
const
strings& _getRegExpr()
const override
;
34
35
res _onTake(
const
flagArgs
&
tray
)
const override
;
36
37
private
:
38
cli
& _cli;
39
};
40
}
by::fileFlag
Flag for specifying a frontend source code file to load and execute.
Definition
fileFlag.hpp:21
by::tnarr
Definition
tnarr.hpp:9
dep.hpp
by::cli
Definition
cli.hpp:40
to Top