| 25 | virtual ~Script(){} |
| 26 | |
| 27 | void setBefore(const string& b) |
| 28 | { |
| 29 | if(b == "NULL") return; |
| 30 | fprintf(mFile,"\tsetAttr \".b\" -type \"string\" "); |
| 31 | b.write(mFile); |
| 32 | fprintf(mFile,";\n"); |
| 33 | } |
| 34 | void setAfter(const string& a) |
| 35 | { |
| 36 | if(a == "NULL") return; |
no test coverage detected