001/*----------------------------------------------------------------------------*/
002/* Copyright (c) FIRST 2008-2017. All Rights Reserved.                        */
003/* Open Source Software - may be modified and shared by FRC teams. The code   */
004/* must be accompanied by the FIRST BSD license file in the root directory of */
005/* the project.                                                               */
006/*----------------------------------------------------------------------------*/
007
008package edu.wpi.first.wpilibj;
009
010/**
011 * Structure for holding the values stored in an accumulator.
012 */
013public class AccumulatorResult {
014
015  /**
016   * The total value accumulated.
017   */
018  @SuppressWarnings("MemberName")
019  public long value;
020  /**
021   * The number of sample vaule was accumulated over.
022   */
023  @SuppressWarnings("MemberName")
024  public long count;
025}