Difference between revisions of "Cpp Coding Standards/HEADERS"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Cpp Coding Standards/Topics/HEADERS moved to Cpp Coding Standards/Header Files: Improve Cpp_Coding_Standards structure.)
Line 1: Line 1:
== Header Files ==
+
Topic-Id: '''HEADERS'''
What to do and do not with header files.
+
 
 +
What to do or do not with header files.
 
----
 
----
 
=== Summary ===
 
=== Summary ===
==== SelfSufficient ====
+
==== Self Sufficient <span id="Self">(Self)</span> ====
 
Make headers include everything they need themselves.
 
Make headers include everything they need themselves.
  
==== IncludeDirectly ====
+
[[/Self|Details]]
 +
 
 +
==== Include Directly <span id="IncDirect">(IncDirect)</span> ====
 
Include the header files for all types you need directly, not via another file.
 
Include the header files for all types you need directly, not via another file.
  
----
+
[[/IncDirect|Details]]
=== Explanations ===
+
  
 
----
 
----
 
[[Category:Coding Standards]]
 
[[Category:Coding Standards]]

Revision as of 22:26, 29 November 2006

Topic-Id: HEADERS

What to do or do not with header files.


Summary

Self Sufficient (Self)

Make headers include everything they need themselves.

Details

Include Directly (IncDirect)

Include the header files for all types you need directly, not via another file.

Details


Personal tools