CPSC 421 OOP Separate Compilation

123456789101112131415161718192021
Across
  1. 2. The code that uses the include file must _____ no matter where it is included or which includes precede it
  2. 5. In an include file, _____ insert the include of any files needed for the function declarations
  3. 7. Include files, *.hpp, contain the _____ concerns
  4. 11. Include files, *.hpp, include function _____
  5. 13. Implementation files, *.cpp, contain the _____ concerns
  6. 15. The object files are linked together using the _____
  7. 17. An include file should not depend on previous includes or the _____ of includes
  8. 18. Separating functions and classes into separate files also increases _____
  9. 19. Hide as many _____ as possible in the implementation files
  10. 21. The acronym IWYU stands for ____ _____ ____ ____
Down
  1. 1. An include file needs to be _____-_____
  2. 3. Function declarations are also known as function _____
  3. 4. We require _____ _____ to prevent the compiler from seeing the include file contents more than once
  4. 6. Both files require a _____ comment, as in any other source file
  5. 8. Include the related include file _____, then when you compile the implementation file, you check that the include file is complete
  6. 9. For each application, one file is the main program and contains the _____ function
  7. 10. Do not depend on _____ includes
  8. 12. Do not include ._____ files
  9. 14. Files are compiled separately into _____ files
  10. 16. Real programs are composed of _____ files
  11. 20. Implementation files, *.cpp, include function _____