// --------------------------------------------------------------
// ChessPosition.java
// A very basic ADT class for chess positions - just rank and file
// Author: M.B. Feldman, The George Washington University
// Last Modified: January 2003
// --------------------------------------------------------------
package csci133;
public class ChessPosition
{
  private char file;
  private int  rank;

  /**
  *   Constructor - sets up object with the specified initial values.
  */
  public ChessPosition (char aFile, int aRank)
  {
    // stub
  }

  /**
  *   Returns this ChessPosition object as a string.
  */
  public String toString()
  {
    // stub
    return "";
  }

  /**
  *   Returns the rank
  */
  public int getRank()
  {
    // stub
    return 1;
  }

  /**
  *   Returns the file
  */
  public char getFile()
  {
    // stub
    return 'a';
  }

}