inputFunc.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
7
11 class _nout inputFunc: public baseFunc {
12 BY(ME(inputFunc, baseFunc), CLONE(inputFunc))
13
14 public:
15 const ntype& getType() const override;
16
17 const baseObj& getOrigin() const override;
18
19 using super::run;
20 str run(const args& a) override;
21 };
22}
Function call arguments container.
Definition: args.hpp:13
Base class for all function types.
Definition: baseFunc.hpp:18
Base class for all objects in byeol language.
Definition: baseObj.hpp:24
Input function for reading user input.
Definition: inputFunc.hpp:11
Native type system for byeol language.
Definition: ntype.hpp:19