From: wessels <> Date: Fri, 28 Apr 2006 11:13:20 +0000 (+0000) Subject: Added a comment including Robert's explanation for ConfigParser X-Git-Tag: SQUID_3_0_PRE4~210 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9227a6e162562429bcac5f177c19525c7caffd15;p=thirdparty%2Fsquid.git Added a comment including Robert's explanation for ConfigParser class, taken from a squid-dev message. --- diff --git a/src/ConfigParser.h b/src/ConfigParser.h index 8a8b930256..3ecfae2a8b 100644 --- a/src/ConfigParser.h +++ b/src/ConfigParser.h @@ -1,6 +1,6 @@ /* - * $Id: ConfigParser.h,v 1.4 2006/04/25 12:00:29 robertc Exp $ + * $Id: ConfigParser.h,v 1.5 2006/04/28 05:13:20 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -38,10 +38,15 @@ #include "squid.h" -/** +/* * A configuration file Parser. Instances of this class track * parsing state and perform tokenisation. Syntax is currently * taken care of outside this class. + * + * One reason for this class is to allow testing of configuration + * using modules without linking cache_cf.o in - because that drags + * in all of squid by reference. Instead the tokeniser only is + * brought in. */ class ConfigParser