#include "file.h"
#include <file.h>
Here is an example header file:
// standard include guard... prevent multiple inclusion
#ifndef SMBIOSINTERFACE_H
#define SMBIOSINTERFACE_H
// compat header should always be first header
#include "smbios/compat.h"
// next include system header files
#include <cstdlib> // Provides size_t and NULL
#include <iostream>
#include <string>
#include <map>
#include <memory> // Provides auto_ptr<>
// types.h should be first user-defined header.
#include "smbios/types.h"
// include other smbios/I*.h headers next
#include "smbios/IFactory.h"
//.... declarations here ....
#endif /* SMBIOSINTERFACE_H */
1.5.4