~chtsanti/squid/icap-max-connections

« back to all changes in this revision

Viewing changes to src/adaptation/AccessRule.h

  • Committer: Christos Tsantilas
  • Date: 2009-02-18 22:18:35 UTC
  • mfrom: (9294.1.215 trunk)
  • Revision ID: chtsanti@users.sourceforge.net-20090218221835-lfxxe3bs8uhu0b1h
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
class AccessRule
16
16
{
17
17
public:
18
 
    AccessRule();
 
18
    AccessRule(const String &groupId);
19
19
    ~AccessRule();
20
20
 
21
21
    void parse(ConfigParser &parser);
37
37
typedef Vector<Adaptation::AccessRule*> AccessRules;
38
38
extern AccessRules &AllRules();
39
39
extern AccessRule *FindRule(const AccessRule::Id &id);
 
40
extern AccessRule *FindRuleByGroupId(const String &groupId);
40
41
 
41
42
} // namespace Adaptation
42
43