For Visual C++, we need to have a single header included at the top of every file, that's precompiled, and then set the USE Precompiled Header setting in the C/C++ settings panel, Precompiled Header options
Also useful to dramatically improve compilation times on other platforms.
Normal simple use on platforms like WinCE or embedded situations will have OOF_NO_STDLIB defined. However, if you want to have standard libraries available and still use this header for just utils like oofstr, oofarray and oofxml, you can define OOF_NO_DATABASE.
#include "oofplat.h"
#include "oof0.h"
#include "oof4.h"
#include "oofexcep.h"
#include "oofquery.h"
#include "oofrel.h"
Include dependency graph for oofpch_c.h:

This graph shows which files directly or indirectly include this file:

1.3.5