00001 #ifndef CHECKBOOK_H
00002 #define CHECKBOOK_H
00003
00004 #include <fstream>
00005 #include <vector>
00006 #include <string>
00007 #include "check.h"
00008
00009 using namespace std;
00010
00018 class Checkbook
00019 {
00020 public:
00021 Checkbook();
00022 void input( string filename );
00023 void input( istream &in );
00024 void output( string filename );
00025 void output( ostream &out = cout );
00026 double total() const;
00027
00028 private:
00030 vector<Check> checks;
00031
00032 };
00033
00034 #endif