/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.40 07/30/16 */ /* */ /* FACT RHS PATTERN PARSER HEADER MODULE */ /*******************************************************/ /*************************************************************/ /* Purpose: */ /* */ /* Principal Programmer(s): */ /* Gary D. Riley */ /* */ /* Contributing Programmer(s): */ /* */ /* Revision History: */ /* */ /* 6.30: Added const qualifiers to remove C++ */ /* deprecation warnings. */ /* */ /* Added code to prevent a clear command from */ /* being executed during fact assertions via */ /* Increment/DecrementClearReadyLocks API. */ /* */ /* 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_factrhs #pragma once #define _H_factrhs #include "expressn.h" #include "factmngr.h" #include "scanner.h" #include "symbol.h" struct expr *BuildRHSAssert(Environment *,const char *,struct token *,bool *,bool,bool,const char *); struct expr *GetAssertArgument(Environment *,const char *,struct token *,bool *,TokenType,bool,bool *); struct expr *GetRHSPattern(Environment*,const char *,struct token *,bool *,bool, bool,bool,TokenType); Fact *StringToFact(Environment *,const char *); #endif /* _H_factrhs */