Skip to content
Snippets Groups Projects
geldscheintyp.h 373 B
#ifndef GELDSCHEINTYP_H
#define GELDSCHEINTYP_H
#include <string>


class geldscheintyp{
    private:
              std::string scheintyp;
int anzahl;

public:
geldscheintyp(const std::string& typ, int nummer);
std::string getScheintyp() const;
int getAnzahl() const;
void setScheintyp(const std::string& typ);
void setAnzahl(int nummer);
};

#endif // GELDSCHEINTYP_H