PrintMeFirst.h o SavingsAccount.h SavingsAccount.cpp CheckingAccount.h CheckingAccount.cpp BankAccount.h BankAccount.cpp Makefile 1 P/* CheckingAccount.h 2 * Header file for CheckingAccount class 3 * efile CheckingAccount.h @author Javaria Basit 5 6 Q#ifndef CHECKINGACCOUNT_H #define CHECKINGACCOUNT H #include "BankAccount.h" 9 10 using nanespace std; 11 eclass CheckingAccount :public BankAccount { 12 13 14 15 private: int transactions; void check_for_fee(); public: 16 17 18 19 20 21 CheckingAccount(string, double); void withdraw(double); void deposit(double); void nonth_end(); }; 22 23 24 #endif rectory: /home/cnet/Lab 7)

Np Ms Office 365/Excel 2016 I Ntermed
1st Edition
ISBN:9781337508841
Author:Carey
Publisher:Carey
Chapter3: Performing Calculations With Formulas And Functions
Section3.1: Formulas And Functions
Problem 7QC
icon
Related questions
Question

I need help with documentation for my header files

I need documentation for each line.

Activities
O Geany -
Oct 29 16:36
CheckingAccount.h - /home/cnet/Lab 7 - Geany
File Edit Search View Document Project Build Tools Help
Documents
PrintMeFirst.h
SavingsAccount.h O
SavingsAccount.cpp 8
CheckingAccount.h 8
CheckingAccount.cpp 8
BankAccount.h
BankAccount.cpp O
Makefile
Money.h
~/Lab 5
1
E/* CheckingAccount.h
Money.h
2
* Header file for CheckingAccount class
3
* @file CheckingAccount.h
|~/Lab 7
4
* @author Javaria Basit
c BankAccount.cpp
5
*/
c- BankAccount.h
6
Q#ifndef CHECKINGACCOUNT H
C bankTest.cpp
#define CHECKINGACCOUNT_H
#include "BankAccount.h"
using namespace std;
7
ea CheckingAccount.cpp
- CheckingAccount.h
A Makefile
8
10
eclass CheckingAccount :public BankAccount {
12
13
14
15
16
17
18
19
20
21
22
23
24
11
c- PrintMeFirst.cpp
private:
int transactions;
void check_for_fee();
public:
CheckingAccount();
CheckingAccount(string, double);
void withdraw(double);
void deposit(double);
void month_end();
c+ PrintMeFirst.h
co SavingsAccount.cpp
SavingsAccount.h
};
#endif
make (in directory: /home/cnet/Lab 7)
g++ bankTest.o BankAccount.o CheckingAccount.o SavingsAccount.o PrintMeFirst.o -o bankTest
Compilation finished successfully.
Compiler
line: 24/24 col:0
sel: 0
INS
ТАВ
mode: LF encoding: UTF-8 filetype: C++ scope: unknown
Transcribed Image Text:Activities O Geany - Oct 29 16:36 CheckingAccount.h - /home/cnet/Lab 7 - Geany File Edit Search View Document Project Build Tools Help Documents PrintMeFirst.h SavingsAccount.h O SavingsAccount.cpp 8 CheckingAccount.h 8 CheckingAccount.cpp 8 BankAccount.h BankAccount.cpp O Makefile Money.h ~/Lab 5 1 E/* CheckingAccount.h Money.h 2 * Header file for CheckingAccount class 3 * @file CheckingAccount.h |~/Lab 7 4 * @author Javaria Basit c BankAccount.cpp 5 */ c- BankAccount.h 6 Q#ifndef CHECKINGACCOUNT H C bankTest.cpp #define CHECKINGACCOUNT_H #include "BankAccount.h" using namespace std; 7 ea CheckingAccount.cpp - CheckingAccount.h A Makefile 8 10 eclass CheckingAccount :public BankAccount { 12 13 14 15 16 17 18 19 20 21 22 23 24 11 c- PrintMeFirst.cpp private: int transactions; void check_for_fee(); public: CheckingAccount(); CheckingAccount(string, double); void withdraw(double); void deposit(double); void month_end(); c+ PrintMeFirst.h co SavingsAccount.cpp SavingsAccount.h }; #endif make (in directory: /home/cnet/Lab 7) g++ bankTest.o BankAccount.o CheckingAccount.o SavingsAccount.o PrintMeFirst.o -o bankTest Compilation finished successfully. Compiler line: 24/24 col:0 sel: 0 INS ТАВ mode: LF encoding: UTF-8 filetype: C++ scope: unknown
Activities
O Geany -
Oct 29 16:36
*SavingsAccount.h - /home/cnet/Lab 7 - Geany
File Edit Search View Document Project Build Tools Help
Documents
PrintMeFirst.h 8
SavingsAccount.h O
SavingsAccount.cpp
CheckingAccount.h 8
CheckingAccount.cpp 8
BankAccount.h
BankAccount.cpp O
Makefile
Money.h
E/* SavingsAccount.h
* Header file for SavingsAccount class
* @file SavingsAccount.h
* @author Javaria Basit
* This file SavingsAccount.h consist of class SavingsAccount and it is a private class
* This is also a drived class for the base class BankAccount
L */
e#ifndef SAVINGSACCOUNT_H
#define SAVINGSACCOUNT_H
#include "BankAccount.h"
using namespace std;
~/Lab 5
c- Money.h
|~/Lab 7
c BankAccount.cpp
c BankAccount.h
bankTest.cpp
c CheckingAccount.cpp
- CheckingAccount.h
A Makefile
co PrintMeFirst.cpp
c+ PrintMeFirst.h
aclass SavingsAccount:public BankAccount {
private:
double interest_rate;
double min_balance;
public:
SavingsAccount();
SavingsAccount(string, double, double);
void withdraw(double);
void set_interest_rate(double);
double get_interest_rate();
void display_balance();
void month_end();
};
#endif
c SavingsAccount.cpp
- SavingsAccount.h
26
27
make (in directory: /home/cnet/Lab 7)
|g++ bankTest.o BankAccount.o CheckingAccount.o SavingsAccount.o PrintMeFirst.o -o bankTest
Compilation finished successfully.
Compiler
line: 27/27 col: 0
sel: 0
INS
ТАВ
MOD
mode: LF encoding: UTF-8 filetype: C++ scope: unknown
123456789DHD 2을을임8222222기
Transcribed Image Text:Activities O Geany - Oct 29 16:36 *SavingsAccount.h - /home/cnet/Lab 7 - Geany File Edit Search View Document Project Build Tools Help Documents PrintMeFirst.h 8 SavingsAccount.h O SavingsAccount.cpp CheckingAccount.h 8 CheckingAccount.cpp 8 BankAccount.h BankAccount.cpp O Makefile Money.h E/* SavingsAccount.h * Header file for SavingsAccount class * @file SavingsAccount.h * @author Javaria Basit * This file SavingsAccount.h consist of class SavingsAccount and it is a private class * This is also a drived class for the base class BankAccount L */ e#ifndef SAVINGSACCOUNT_H #define SAVINGSACCOUNT_H #include "BankAccount.h" using namespace std; ~/Lab 5 c- Money.h |~/Lab 7 c BankAccount.cpp c BankAccount.h bankTest.cpp c CheckingAccount.cpp - CheckingAccount.h A Makefile co PrintMeFirst.cpp c+ PrintMeFirst.h aclass SavingsAccount:public BankAccount { private: double interest_rate; double min_balance; public: SavingsAccount(); SavingsAccount(string, double, double); void withdraw(double); void set_interest_rate(double); double get_interest_rate(); void display_balance(); void month_end(); }; #endif c SavingsAccount.cpp - SavingsAccount.h 26 27 make (in directory: /home/cnet/Lab 7) |g++ bankTest.o BankAccount.o CheckingAccount.o SavingsAccount.o PrintMeFirst.o -o bankTest Compilation finished successfully. Compiler line: 27/27 col: 0 sel: 0 INS ТАВ MOD mode: LF encoding: UTF-8 filetype: C++ scope: unknown 123456789DHD 2을을임8222222기
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
Systems Analysis and Design (Shelly Cashman Serie…
Systems Analysis and Design (Shelly Cashman Serie…
Computer Science
ISBN:
9781305494602
Author:
Scott Tilley, Harry J. Rosenblatt
Publisher:
Cengage Learning