Rudiments
codetreegrammar.h
1 // Copyright (c) 2015 David Muse
2 // See the COPYING file for more information.
3 
4  private:
5  bool hasRecursiveBreak();
6  bool tagStart(const char *ns, const char *name);
7  bool tagEnd(const char *ns, const char *name);
8  bool attributeName(const char *name);
9  bool attributeValue(const char *value);
10 
11  void buildDefinitionDictionary();
12  void buildNonTerminalNodeAssociations(domnode *node);
13 
14  domnode *getDefinition(const char *name);
15 
16  codetreegrammarprivate *pvt;
Definition: domnode.h:122