/* Class to represent a bank account and support
 * related operations.
 * Written by: Nadeem Abdul Hamid
 *
 */


public class BankAccount {
 
  
  /* Initializes a new bank account with a $0.00 balance */
  public BankAccount( ) {
    
  }
  
  
  /* Initializes a new bank account with a 
     starting balance */
  public BankAccount( double startingBalance ) {
    
  }
  
  
  
  /* Deposits an amount of money into the bank account 
   */
  public void deposit( double amount ) {
    
  }
  
  
  /* Withdraws an amount of money from the bank account 
   */
  public void withdraw( double amount ) {
    
  }
  
  
  /* Returns the current balance in the bank account 
   */
  public double getBalance( ) {
    
  }

  
}
