]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/mgr/StringParam.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / mgr / StringParam.cc
index 8d0f7a2ecacd5d3ead39009c137aaa147342b7b6..de6212e2b3b44cdabcc7ddcd1c91abcf2876facb 100644 (file)
@@ -1,22 +1,24 @@
 /*
- * $Id$
- *
- * DEBUG: section 16    Cache Manager API
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
  *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
  */
 
+/* DEBUG: section 16    Cache Manager API */
+
 #include "squid.h"
 #include "ipc/TypedMsgHdr.h"
 #include "mgr/StringParam.h"
 
-
 Mgr::StringParam::StringParam():
-        QueryParam(QueryParam::ptString), str()
+    QueryParam(QueryParam::ptString), str()
 {
 }
 
 Mgr::StringParam::StringParam(const String& aString):
-        QueryParam(QueryParam::ptString), str(aString)
+    QueryParam(QueryParam::ptString), str(aString)
 {
 }
 
@@ -38,3 +40,4 @@ Mgr::StringParam::value() const
 {
     return str;
 }
+