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