/*********************************************************************
 * Authors: B. Alex Bridges and Miriam Becker                        *
 * File: account.h                                                   *
 * Class: CPSC-451, Summer 1999                                      *
 * Project: Project 1 - Account Maintenance                          *
 * Description: This program will simulate the ATM machine at a      *
 *              local bank.                                          *
 * Contents: Methods for dealing with the accounts.                  *
 *********************************************************************/


class Account
{
  /* PUBLIC ITEMS */
  public:
    // => VARIABLES
    char charAName[30];  // NAME ON ACCOUNT
    float fpBalance;     // CURRENT ACCOUNT BALANCE
    int iAccountNo;      // ACCOUNT NUMBER
    // => METHODS
    void DepWith(int bDeposit);
    void Inquiry(void);
    // => CONSTRUCTORS AND DESTRUCTOR
    Account(char* pName, float fpAmount, int iOffset);
    ~Account();

  /* PRIVATE ITEMS */
  private:
    // => VARIABLES
    // NONE
    // => METHODS
    // NONE
}; // class Account

