First page Back Continue Last page Graphics
#ifdef (cont.)
- #ifdef RAY_B_
- // code to be temporarily removed
- // “ “
- // “ “
- // “ “
- #endif
Now, since RAY_B_ is not defined, the code will be skipped. Note the reverse logic of #ifndef
To use the code without removing the #ifdef statement, define RAY_B_ (either externally or internally)