Mar 9, 2017 at 3:51am
Can someone please tell what the definitions for objects, attributes, static, scope is?
Last edited on Mar 10, 2017 at 8:17am
Mar 9, 2017 at 3:54am
header file, line 6 - though you shouldn't be using it anyways
Mar 9, 2017 at 3:56am
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 Mar 9, 2017 at 3:57am
Mar 9, 2017 at 4:04am
It works Thank You so much !