001// 002// Generated by JTB 1.1.2 003// 004 005package jtb.cparser.syntaxtree; 006 007// Grammar production: 008// f0 -> ( <STRUCT> | <UNION> ) 009public class StructOrUnion implements Node { 010 static final long serialVersionUID = 20050923L; 011 012 public NodeChoice f0; 013 014 public StructOrUnion(NodeChoice n0) { 015 f0 = n0; 016 } 017 018 public void accept(jtb.cparser.visitor.Visitor v) { 019 v.visit(this); 020 } 021}