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