12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*****************************************************************************
- * Halcon.h
- *****************************************************************************
- *
- * Project: HALCON/HLib
- * Description: Includes all header files for HALCON library
- *
- * (c) 1996-2020 by MVTec Software GmbH
- * www.mvtec.com
- *
- *****************************************************************************/
- #ifndef HALCON_H
- #define HALCON_H
- /* needed system includes */
- #include <math.h>
- #include <stdio.h>
- #include <string.h>
- /* clang-format off */
- #include "HVersNum.h"
- #include "HIntDef.h"
- #include "HDeclSpec.h"
- #include "HErrorDef.h"
- #include "HConst.h"
- #include "HBase.h"
- #include "IPType.h"
- #include "HParallel.h"
- #include "hlib/HAlloc.h"
- #include "HMacro.h"
- #include "HExtern.h"
- #include "hlib/HBaseGP.h"
- #include "hlib/IOSpy.h"
- #include "hlib/HInstance.h"
- #include "hlib/DBNew.h"
- #include "hlib/CORE1.h"
- #include "hlib/HXLD.h"
- #include "hlib/HError.h"
- /* clang-format on */
- #endif
|