CPSC 421 OOP Separate Compilation

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