#ifndef STUDENT_H_
#define STUDENT_H_
#include <iostream>
using namespace std;
class Student
{
private:
// the data members
unsigned short data;
public:
// the method signatures
void setYear(short year);
int getYear() const;
void setCredits(short credits);
short getCredits() const;
void print() const;
};
#endif