1
0

Date.cpp 187 B

123456789101112131415
  1. #include <string>
  2. #include "Date.h"
  3. Date::Date(){ // default constructor
  4. date = "";
  5. }
  6. Date::Date(std::string date){
  7. this->date = date;
  8. }
  9. std::string Date::getDate(){
  10. return date;
  11. }