Contents
Syntax
The syntax for
ifstream definitions ifstream(definitions) :=(ifstream, definitions)
@ifstream definitions @ifstream(definitions) @:=(ifstream, definitions)
Note: If you are using the first syntax for variable definitions and want to have more code and/or text following on the same line then simply end the definition with '
Description
The
Note: If you need to define thousands of variables then
Member functions
The following member functions are available for
option | description |
---|---|
close | closes the file from reading |
open(path) | open a file to read from |
option | description |
Options
The following options are available for
option | description |
---|---|
definition of a |
|
define variable at layer |
|
do not add member functions for variables | |
definition of a |
|
add |
|
option | description |
f++ example
Examples of
- int x
- string str
- ifstream ifs("input.txt")
- read(ifs, x, str)
- getline(ifs, str)
- ifs.close()
n++ example
Examples of
- @int x
- @string str
- @ifstream ifs("input.txt")
- @read(ifs, x, str)
- @getline(ifs, str)
- @ifs.close()