Skip to Content
C++17 Quick Syntax Reference: A Pocket Guide to the Language, APIs and Library
book

C++17 Quick Syntax Reference: A Pocket Guide to the Language, APIs and Library

by Mikael Olsson
March 2018
Intermediate to advanced content levelIntermediate to advanced
183 pages
2h 34m
English
Apress
Content preview from C++17 Quick Syntax Reference: A Pocket Guide to the Language, APIs and Library
© Mikael Olsson 2018
Mikael OlssonC++17 Quick Syntax Referencehttps://doi.org/10.1007/978-1-4842-3600-0_29

29. Headers

Mikael Olsson1 
(1)
Hammarland, Finland
 

When a project grows, it is common to split the code up into different source files. When this happens the interface and implementation are generally separated. The interface is placed in a header file, which commonly has the same name as the source file and an .h file extension. This header file contains forward declarations for the source file entities that need to be accessible to other compilation units in the project. A compilation unit consists of a source file (.cpp) and any included header files (.h or .hpp).

Why Use Headers

C++ requires everything to be declared before it can be used. ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C++20 Quick Syntax Reference: A Pocket Guide to the Language, APIs, and Library

C++20 Quick Syntax Reference: A Pocket Guide to the Language, APIs, and Library

Mikael Olsson
C++ Standard Library Quick Reference

C++ Standard Library Quick Reference

Peter Van Weert, Marc Gregoire

Publisher Resources

ISBN: 9781484236000Purchase LinkPublisher Website