| 214 | } |
| 215 | } |
| 216 | virtual void preVisitStructureAlias ( Structure * var, const string & name, TypeDecl * at ) override { |
| 217 | Visitor::preVisitStructureAlias(var, name, at); |
| 218 | ss << "\ttypedef " << name << " = " << at->describe(); |
| 219 | if ( gen2 ) ss << ";"; |
| 220 | ss << "\n"; |
| 221 | } |
| 222 | |
| 223 | virtual void preVisitStructureField ( Structure * that, Structure::FieldDeclaration & decl, bool last ) override { |
| 224 | Visitor::preVisitStructureField(that, decl, last); |
no test coverage detected