</code></pre></li></ul></li></ol></li><li><strong>Include guards:</strong> all headers must have include guards to prevents name conflict. These are place right after the license and at the end of the file. The adopted format includes the relative path in ADIOS. For example, file adios2/engine/bp/BPFileWriter.h will contain the following include guards:<ol><li><ul><li><prestyle="border: 0;"><code>
</code></pre></li></ul></li></ol></li><li>
<strong>Include guards:</strong> all headers must have include guards to prevents name conflict. These are place right after the license and at the end of the file. The adopted format includes the relative path in ADIOS. For example, file adios2/engine/bp/BPFileWriter.h will contain the following include guards:<ol><li><ul><li><prestyle="border: 0;"><code>
#ifndef ADIOS2_ENGINE_BP_BPFILEWRITER_H_
#define ADIOS2_ENGINE_BP_BPFILEWRITER_H_<br><br>
...
#endif // end of ADIOS2_ENGINE_BP_BPFILEWRITER_H_ at the end of file
</code></pre></li></ul></li></ol></li><li><strong>Include Documentation:</strong> list header components used in the code if header is not self-explanatory<ul><li>Example:</li></ul><ol><li><ul><li><prestyle="border: 0;"><code> #include <vector> //self-explanatory
</code></pre></li></ul></li></ol></li><li>
<strong>Document includes:</strong> list header components used in the code if header is not self-explanatory<ul><li>Example:</li></ul><ol><li><ul><li><prestyle="border: 0;"><code> #include <vector> //self-explanatory, not needed