definitions


Can someone please tell what the definitions for objects, attributes, static, scope is?
Last edited on
header file, line 6 - though you shouldn't be using it anyways

1
2
3
4
5
6
#define PREFERENCE
#ifndef PREFERENCE

// etc.

#endif 


should be

1
2
3
4
5
6
#ifndef PREFERENCE
#define PREFERENCE

// etc.

#endif 


Last edited on
It works Thank You so much !
Topic archived. No new replies allowed.