|
Example 8-3 shows some include definitions. These are typical of the header files that are not specific to the API that are required for most API functions.
|
|
|
The
acis.hxx file must always be included, must always be the first
ACIS include file, and must be before any application include files.
|
|
|
C++ Example
|
|
|
#include <stdio.h>
|
|
#include "kernel/acis.hxx"
|
|
#include "kernel/logical.h"
|
|
#include "kernel/dcl_kern.h"
|
|
#include "kernel/kernapi/api/api.hxx"
|
|
#include "kernel/kernapi/api/check.hxx"
|
|
#include "kernel/kernapi/api/api.err"
|
|
#include "kernel/kernutil/debug/module.hxx"
|
|
|
Example 8-3. Header File Declarations
|