| 62 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ |
| 63 | |
| 64 | bool FGOutputTextFile::Load(Element* el) |
| 65 | { |
| 66 | if(!FGOutputFile::Load(el)) |
| 67 | return false; |
| 68 | |
| 69 | string type = el->GetAttributeValue("type"); |
| 70 | string delim; |
| 71 | if (type == "TABULAR") { |
| 72 | delim = "\t"; |
| 73 | } else { |
| 74 | delim = ","; |
| 75 | } |
| 76 | |
| 77 | SetDelimiter(delim); |
| 78 | |
| 79 | return true; |
| 80 | } |
| 81 | |
| 82 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 83 |
nothing calls this directly
no test coverage detected