#ifndef _BANKACCOUNT_H_
#define _BANKACCOUNT_H_

/*
 * The obligitory bank account class.
 * Specification.
 * CSE 374 C++ demo  hp
 */

class BankAccount {

 public:  // public interface

  // constructor
  BankAccount(int acctnum, int initial_balance);

  // methods
  void deposit(int howmuch);
  int get_balance();
  int get_account();

  // instance variables
 private:
  int number;
  int balance;

};

#endif   // _BANKACCOUNT_H_