로딩중...
검색중...
일치하는것 없음
inputFunc.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
5
6namespace by {
7
12 class _nout inputFunc: public baseFunc {
14
15 public:
16 const ntype& getType() const override;
17
18 const baseObj& getOrigin() const override;
19
20 using super::eval;
21 str eval(const args& a) override;
22 };
23}
Function or object evaluation arguments
Definition args.hpp:22
Base class for all function types
Definition baseFunc.hpp:41
Base class for representing byeol objects
Definition baseObj.hpp:73
Input function for reading user input
Definition inputFunc.hpp:12
represents native c++ type system for byeol language
Definition ntype.hpp:33
Definition tnarr.hpp:9
to Top