Remove other simple uses of PDict

This commit is contained in:
Tim Wojtulewicz 2019-07-26 13:42:16 -07:00 committed by Jon Siwek
parent 8beb710a5e
commit e6558d1f19
9 changed files with 84 additions and 75 deletions

View file

@ -2,6 +2,7 @@
#define rule_h
#include <limits.h>
#include <map>
#include "Obj.h"
#include "List.h"
@ -15,7 +16,7 @@ class RuleHdrTest;
class Rule;
typedef PList<Rule> rule_list;
typedef PDict<Rule> rule_dict;
typedef std::map<string, Rule*> rule_dict;
class Rule {
public: