‹#›
6
List Abstraction
•
struct data {
•
char * name;
•
char * psu_id;
•
float grade;
•
};
•
Options for placement:
–
before the class in the header file
–
in the implementation file
–
nested within the class