Mercurial > ~dholland > hg > ag > index.cgi
view anagram/agcore/keyword.h @ 20:bb115deb6fb2
Improve agfiles rule.
(1) It didn't depend on $(AGCL) and it absolutely should have.
(2) allow AGFORCE=1 to make it rebuild whether or not it looks out of
date.
(3) Document this.
author | David A. Holland |
---|---|
date | Mon, 13 Jun 2022 00:02:15 -0400 |
parents | 607e3be6bad8 |
children |
line wrap: on
line source
/* * AnaGram, A System for Syntax Directed Programming * Copyright 1993-2002 Parsifal Software. All Rights Reserved. * See the file COPYING for license and usage terms. * * keyword.h - keywords */ #ifndef KEYWORD_H #define KEYWORD_H #include "agarray.h" #include "register.h" class KeywordDescriptor; // below class Keyword : public KeyedObjectRegister<KeywordDescriptor> { public: Keyword(); Keyword(const char *x); Keyword(unsigned x); Keyword(const Keyword &t); void operator = (const Keyword &t); static void reset(); static Keyword create(); static Keyword sorted(int x); static const int first; class Map; friend class Map; class Map { public: KeywordDescriptor &operator [] (unsigned x); }; class Dict { public: Keyword add_string(const char *s); }; }; #include "agstring.h" #include "token.h" #include "tree.h" class KeywordDescriptor { public: AgString string; Token token_number; int reserve; KeywordDescriptor(); KeywordDescriptor(const char *s); int operator < (const KeywordDescriptor &d) const; }; Keyword add_string_dict(const char *s, Keyword::Dict &d); void append_key(int kn); void build_key_tables(void); void check_key_reserve(void); int keyword_problem(unsigned, const AgArray<int>, Keyword); #endif /* KEYWORD_H */