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