Newer
Older
#ifndef STUDENT_H
#define STUDENT_H
#include <string>
class Student {
private:
std::string lastName;
std::string firstName;
int matriculationNumber;
Student *nextStudent;
public:
Student(std::string lastName, std::string firstName);
std::string getLastName() const;
std::string getFirstName() const;
int getMatriculationNumber() const;
Student *getNextStudent() const;