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