| 38 | std::ofstream TupleGen::regionStream; |
| 39 | |
| 40 | void ofopen(std::ofstream& f, const std::string& path) { |
| 41 | f.open(path); |
| 42 | if (f.fail()) { |
| 43 | err(1, "opening %s", path.c_str()); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | void TupleGen::openOutputFiles(const std::string& outDir) { |
| 48 | ofopen(warehouseStream, outDir + "/warehouse.tbl"); |
no test coverage detected