/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.40 05/16/18 */ /* */ /* CLASS PARSER HEADER FILE */ /*******************************************************/ /*************************************************************/ /* Purpose: */ /* */ /* Principal Programmer(s): */ /* Brian L. Dantes */ /* */ /* Contributing Programmer(s): */ /* */ /* Revision History: */ /* */ /* 6.24: Converted INSTANCE_PATTERN_MATCHING to */ /* DEFRULE_CONSTRUCT. */ /* */ /* Renamed BOOLEAN macro type to intBool. */ /* */ /* 6.30: Changed integer type/precision. */ /* */ /* Support for long long integers. */ /* */ /* Added const qualifiers to remove C++ */ /* deprecation warnings. */ /* */ /* 6.40: Removed LOCALE definition. */ /* */ /* Pragma once and other inclusion changes. */ /* */ /* Added support for booleans with . */ /* */ /* Removed use of void pointers for specific */ /* data structures. */ /* */ /*************************************************************/ #ifndef _H_clsltpsr #pragma once #define _H_clsltpsr #if OBJECT_SYSTEM && (! BLOAD_ONLY) && (! RUN_TIME) #define MATCH_RLN "pattern-match" #define REACTIVE_RLN "reactive" #define NONREACTIVE_RLN "non-reactive" #include "object.h" typedef struct tempSlotLink { SlotDescriptor *desc; struct tempSlotLink *nxt; } TEMP_SLOT_LINK; TEMP_SLOT_LINK *ParseSlot(Environment *,const char *,const char *,TEMP_SLOT_LINK *,PACKED_CLASS_LINKS *,bool); void DeleteSlots(Environment *,TEMP_SLOT_LINK *); #endif #endif