// Checking.h: interface for the Checking class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CHECKING_H__4CF7B21D_53FE_11D3_933C_0060674E1056__INCLUDED_)
#define AFX_CHECKING_H__4CF7B21D_53FE_11D3_933C_0060674E1056__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "CashAccount.h"
#include <iostream>
using namespace std;

class Checking;
ostream & operator<<(ostream & os, const Checking & c);

class Checking : public CashAccount  
{
public:
	Checking(double b);
	friend ostream & operator<<(ostream & os, const Checking & c);
	Checking();
	virtual ~Checking();

};

#endif // !defined(AFX_CHECKING_H__4CF7B21D_53FE_11D3_933C_0060674E1056__INCLUDED_)
