~chtsanti/squid/icap-max-connections

« back to all changes in this revision

Viewing changes to src/esi/ExpatParser.h

  • Committer: Christos Tsantilas
  • Date: 2009-04-11 09:00:59 UTC
  • mfrom: (9294.1.333 trunk)
  • Revision ID: chtsanti@users.sourceforge.net-20090411090059-8n47p1kyy1cqfqkn
MergeĀ FromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
#if USE_SQUID_ESI
37
37
 
38
 
#include "ESIParser.h"
39
 
#include "expat.h"
 
38
#include "esi/Parser.h"
 
39
#include <expat.h>
40
40
 
41
41
class ESIExpatParser : public ESIParser
42
42
{
51
51
    long int lineNumber() const;
52
52
    char const * errorString() const;
53
53
 
 
54
    EsiParserDeclaration;
 
55
 
54
56
private:
55
 
    ESI_PARSER_TYPE;
56
57
    /** our parser */
57
58
    mutable XML_Parser p;
58
59
    static void Start(void *data, const XML_Char *el, const char **attr);