Objects and pointers Problem

closed account (NAf2Nwbp)
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:

 
	next *student;


I don't see a "next" type declared anywhere.
closed account (S6k9GNh0)
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.