Skip to content

Commit

Permalink
Update Log_IO.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
mihirp161 authored Sep 21, 2019
1 parent c3afd05 commit 4d79c53
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Log_IO.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
Author: Mihir K Patel
Purpose: Following is a implementation file for the LogIO.h. This contains function defintions
for those in its header file. Main properties of this file are:
1) To create a log file with users names.
2) Take user names.
3) To greet the users.
4) To make user-specific log file
for those in its header file. Main properties of this file are:
1) To create a log file with users names.
2) Take user names.
3) To greet the users.
4) To make user-specific log file
*/
#include "Log_IO.h"
LogIO::LogIO() { /*Simple constructor*/
Expand Down Expand Up @@ -131,4 +131,4 @@ std::ostream& operator<< (std::ostream & out, const LogIO & L_IO) {
out << KBCYN << "\nThank you, " << L_IO.original_user_name << " for using this program today!\n" << KNRM;
return out;
}
LogIO::~LogIO() { delete user_name; } //----->Do I need a copy constructor or copy assinment here???
LogIO::~LogIO() { delete user_name; } //----->Do I need a copy constructor or copy assinment here???

0 comments on commit 4d79c53

Please sign in to comment.