/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.40 07/30/16 */ /* */ /* DEFTEMPLATE CONSTRUCT COMPILER HEADER FILE */ /*******************************************************/ /*************************************************************/ /* Purpose: */ /* */ /* Principal Programmer(s): */ /* Gary D. Riley */ /* */ /* Contributing Programmer(s): */ /* */ /* Revision History: */ /* */ /* 6.23: Added support for templates maintaining their */ /* own list of facts. */ /* */ /* 6.30: Added support for path name argument to */ /* constructs-to-c. */ /* */ /* Removed conditional code for unsupported */ /* compilers/operating systems (IBM_MCW, */ /* MAC_MCW, and IBM_TBC). */ /* */ /* Support for deftemplate slot facets. */ /* */ /* Added code for deftemplate run time */ /* initialization of hashed comparisons to */ /* constants. */ /* */ /* Added const qualifiers to remove C++ */ /* deprecation warnings. */ /* */ /* 6.40: Removed LOCALE definition. */ /* */ /* Pragma once and other inclusion changes. */ /* */ /*************************************************************/ #ifndef _H_tmpltcmp #pragma once #define _H_tmpltcmp #include "tmpltdef.h" void DeftemplateCompilerSetup(Environment *); void DeftemplateCModuleReference(Environment *,FILE *,unsigned long,unsigned int,unsigned int); void DeftemplateCConstructReference(Environment *,FILE *,Deftemplate *, unsigned int,unsigned int); #endif /* _H_tmpltcmp */