로딩중...
검색중...
일치하는것 없음
fileSupply.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
5
6namespace by {
7
12 class _nout fileSupply: public srcSupply {
14
15 public:
16 fileSupply(const std::string& newPath);
17
18 public:
19 void* onSupplySrc(parser& ps, void* scanner) const override;
20 const std::string& getPath() const;
21
22 private:
23 std::string _path;
24 };
25}
File-based source supply
Definition fileSupply.hpp:12
void * onSupplySrc(parser &ps, void *scanner) const override
Parser for byeol language source code
Definition parser.hpp:126
Source code supply interface
Definition srcSupply.hpp:18
Definition tnarr.hpp:9
to Top