| 1009 | } |
| 1010 | |
| 1011 | void WriteCCOp(const OpDef& graph_op_def, const ApiDef& api_def, |
| 1012 | const std::vector<string>& aliases, WritableFile* h, |
| 1013 | WritableFile* cc) { |
| 1014 | OpInfo op_info(graph_op_def, api_def, aliases); |
| 1015 | |
| 1016 | op_info.WriteClassDecl(h); |
| 1017 | op_info.WriteClassDef(cc); |
| 1018 | } |
| 1019 | |
| 1020 | void StartFiles(bool internal, const string& dot_h_fname, WritableFile* h, |
| 1021 | WritableFile* cc, string* op_header_guard) { |
no test coverage detected