Objects and pointers Problem
How do I delete a post!?
Last edited on
Shouldn't StudentList
contain a Student
and a link rather than just a link?
Student.h: line 14:
I don't see a "next" type declared anywhere.
common bad practice to use #pragma once btw.
Better to use
1 2 3
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
#pragma once
#endif
|
if you are going to at all.
Header guards are not compiler-specific though.
Topic archived. No new replies allowed.