로딩중...
검색중...
일치하는것 없음
fileFlag.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
4#include "flagStacker/flag/flag.hpp"
6
7namespace 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}
Flag for specifying a frontend source code file to load and execute
Definition fileFlag.hpp:21
Definition tnarr.hpp:9
Definition cli.hpp:40
to Top