Fehler beim Überschreiben virtueller Funktionen beim Upcasting (C++) [geschlossen]C++

Programme in C++. Entwicklerforum
Anonymous
 Fehler beim Überschreiben virtueller Funktionen beim Upcasting (C++) [geschlossen]

Post by Anonymous »

Aufgrund anderer Informationen, die ich gefunden habe, bin ich mir nicht sicher, was in diesem Code vor sich geht:
Übergeordnete Klasse:

Code: Select all

#ifndef EMPLOYEE_H
#define EMPLOYEE_H
#include 
#include 
#include "Date.h"
#include "Address.h"

class Employee {
public:
Employee(const std::string & name, const std::string & date): name_(name), birthday_(date), address_(nullptr) {}
virtual ~Employee();

virtual void SetAddress(const std::string &, const std::string &);
virtual void Display(std::ostream &) const;
friend std::ostream & operator

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post