Dear All,
What is the meaning of following declaration?
[code]
#ifndef __FPS_CONFIGURATION_PROJECT_CDF_
#define __FPS_CONFIGURATION_PROJECT_CDF_
[\code]
This is a discussion on What is the meaning of following declaration? within the C Programming forums, part of the General Programming Boards category; Dear All, What is the meaning of following declaration? [code] #ifndef __FPS_CONFIGURATION_PROJECT_CDF_ #define __FPS_CONFIGURATION_PROJECT_CDF_ [\code]...
Dear All,
What is the meaning of following declaration?
[code]
#ifndef __FPS_CONFIGURATION_PROJECT_CDF_
#define __FPS_CONFIGURATION_PROJECT_CDF_
[\code]
It defines the macro name __FPS_CONFIGURATION_PROJECT_CDF_ if it has not already been defined. It looks like possibly part of a header inclusion guard.
Incidentally, note that names that begin with an underscore followed by an uppercase letter, or that contain two consecutive underscores, are reserved to the (compiler and standard library) implementation for any use.
C + C++ Compiler: MinGW port of GCC
Version Control System: Bazaar
Look up a C++ Reference and learn How To Ask Questions The Smart Way