/*********************************************************************
 * Authors: B. Alex Bridges and Miriam Becker                        *
 * File: main.h                                                      *
 * Class: CPSC-451, Summer 1999                                      *
 * Project: Project 1 - Account Maintenance                          *
 * Description: This program will simulate the ATM machine at a      *
 *              local bank.                                          *
 * Contents: main function which drives program and other generic    *
 *           methods.                                                *
 *********************************************************************/

class Main
{
  /* PUBLIC ITEMS */
  public:
    // => VARIABLES
    int btrue;        // NUMERIC VALUE FOR TRUE
    int bfalse;       // NUMERIC VALUE FOR FALSE
    int bDebug;       // CONTROLS DISPLAYING OF EXTRA DEBUG OUTPUT
    int bUnixTarget;  // CONTROLS SYSTEM CALL TO CLEAR SCREEN
    // => METHODS
    void ClearScreen(void);
    void PressContinueKey(void);
    // => CONSTRUCTORS AND DESTRUCTOR
    Main();

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

