What do I need to implement this code. I need an ADT
//---------------------------------------------
// This would be the Student.h file
//---------------------------------------------
#include <iostream>
#include <cassert>
using namespace std;
// each student have a name, an ID (100000000~999999999), and three grades
class Student
{
private:
public:
Student();
Student();
setName();
setId();
setGrade ();
getName();
getId();
getGrade() ;
printAll() ;
};
//---------------------------------------------
// This would be the Student.cpp file
//---------------------------------------------
//====================== YOUR CODE STARTS HERE ======================
Student::Student() //default constructor
{
}
Student::Student(string aName,...