001 //
002 // Generated by JTB 1.1.2
003 //
004
005 package jtb.cparser.syntaxtree;
006
007 /**
008 * Grammar production:
009
010 * f0 -> StructOrUnion()
011 * f1 -> ( [ <IDENTIFIER> ] "{" StructDeclarationList() "}" | <IDENTIFIER> )
012 */
013 public class StructOrUnionSpecifier implements Node {
014 static final long serialVersionUID = 20050923L;
015
016 public StructOrUnion f0;
017 public NodeChoice f1;
018
019 public StructOrUnionSpecifier(StructOrUnion n0, NodeChoice n1) {
020 f0 = n0;
021 f1 = n1;
022 }
023
024 public void accept(jtb.cparser.visitor.Visitor v) {
025 v.visit(this);
026 }
027 }