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  /** Default constructor. */
010  public Num() {}
011
012  /**
013   * The number this is backing.
014   *
015   * @return The number represented by this class.
016   */
017  public abstract int getNum();
018}