MCPcopy Create free account
hub / github.com/Yaafe/Yaafe / load

Method load

src_cpp/yaafe-core/DataFlow.cpp:199–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

197
198
199 bool DataFlow::load(const std::string& filename)
200 {
201 FILE* yyin = fopen(filename.c_str(),"r");
202 if (yyin==NULL)
203 {
204 cerr << "cannot open file " << filename << endl;
205 return false;
206 }
207 return yyparse(yyin);
208 }
209
210 bool DataFlow::loads(const std::string& df_str)
211 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected