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.math;
006
007/** A number expressed as a java class. */
008public abstract class Num {
009  /**
010   * The number this is backing.
011   *
012   * @return The number represented by this class.
013   */
014  public abstract int getNum();
015}