001// Copyright (c) FIRST and other WPILib contributors. 002// Open Source Software; you can modify and/or share it under the terms of 003// the WPILib BSD license file in the root directory of this project. 004 005package edu.wpi.first.util.struct.parser; 006 007import java.util.ArrayList; 008import java.util.List; 009 010/** Raw struct schema. */ 011public class ParsedSchema { 012 /** Declarations. */ 013 @SuppressWarnings("MemberName") 014 public List<ParsedDeclaration> declarations = new ArrayList<>(); 015 016 /** Default constructor. */ 017 public ParsedSchema() {} 018}