Skip to content
Snippets Groups Projects
Commit a21f9229 authored by Philipp Pister's avatar Philipp Pister
Browse files

Upload New File

parent 1332b535
No related branches found
No related tags found
No related merge requests found
#ifndef ADRESSE_H
#define ADRESSE_H
#include <iostream>
#include <string>
#include "navidaten.h"
class Adresse : public NaviDaten
{
public:
Adresse(double breitengrad, double laengengrad,const std::string& name, const std::string& strasse, const std::string& hausnummer, const std::string& postleitzahl, const std::string& stadt);
std::string getName() const;
std::string getStrasse() const;
std::string getHausnummer() const;
std::string getPostleitzahl() const;
std::string getStadt() const;
void setID(int newID);
private:
const std::string name;
const std::string strasse;
const std::string hausnummer;
const std::string postleitzahl;
const std::string stadt;
};
#endif // ADRESSE_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment