Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
56a22c459b7dfa34282276791672d1457f8f3515
Switch branch/tag
embb
doc
examples
dataflow
dataflow_source_function-snippet.h
Find file
Normal view
History
Permalink
dataflow_source_function-snippet.h
92 Bytes
Edit
Newer
Older
dataflow_cpp: sources need to return false if processing should be stopped
049b3b00
Marcus Winter
committed
Oct 14, 2014
1
bool
SourceFunction
(
std
::
string
&
str
)
{
Initial version of open source release.
faca57bb
Tobias Schuele
committed
Oct 01, 2014
2
std
::
getline
(
file
,
str
);
dataflow_cpp: sources need to return false if processing should be stopped
049b3b00
Marcus Winter
committed
Oct 14, 2014
3
return
!
file
.
eof
();
Initial version of open source release.
faca57bb
Tobias Schuele
committed
Oct 01, 2014
4
}