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