]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/mgr/StringParam.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / mgr / StringParam.cc
index 358b0ea022c7dc93a943783a017bc66ee5b1746b..a40211b44535cd801ae90fd274051b3c57367f9e 100644 (file)
@@ -1,22 +1,24 @@
 /*
- * $Id$
- *
- * DEBUG: section 16    Cache Manager API
+ * Copyright (C) 1996-2018 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.
  */
 
-#include "config.h"
+/* 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;
 }
+