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

Upload New File

parent 87a4fd21
Branches
No related tags found
No related merge requests found
#ifndef NAVI_H
#define NAVI_H
#include <vector>
#include <string>
//#include "ort.h"
#include "navidaten.h"
class Navi
{
public:
Navi();
~Navi();
void adresseAnlegen(double laengengrad, double breitengrad,const std::string& name, const std::string& strasse, const std::string& hausnummer, const std::string& postleitzahl, const std::string& stadt);
void pointOfInterestAnlegen(double laengengrad, double breitengrad, const std::string& name, const std::string& kategorie, const std::string& bemerkung);
void zeigeKarte() const;
void exportiereKarte(const std::string& dateiname) const;
void importiereKarte(const std::string& dateiname);
void exportiereKarteCSV(const std::string& dateiname);
void importiereKarteCSV(const std::string& dateiname);
void zeigeMenue();
void runNavigation();
NaviDaten *getOrtByID(int id) const;
private:
std::vector<NaviDaten*> daten;
};
#endif // NAVI_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment