]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/adaptation/forward.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / adaptation / forward.h
index 09446f4b68f9d62c28807229cbe71518e6f3913f..1e68358e23e435e12609f4bb211531a810411b60 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 1996-2015 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.
+ */
+
 #ifndef SQUID_ADAPTATION__FORWARD_H
 #define SQUID_ADAPTATION__FORWARD_H
 
 template <class C>
 class RefCount;
 
-namespace Adaptation {
+// For various collections such as AllServices
+// TODO: use std::hash_map<> instead
+template <class Item>
+class Vector;
+
+namespace Adaptation
+{
 
 class Service;
 class ServiceConfig;
+class DynamicGroupCfg;
 class Class;
 class Initiate;
 class Initiator;
 class AccessCheck;
+class AccessRule;
+class ServiceGroup;
+class ServicePlan;
+class ServiceFilter;
+class Message;
+class Answer;
 
 typedef RefCount<Service> ServicePointer;
+typedef RefCount<ServiceConfig> ServiceConfigPointer;
+typedef RefCount<ServiceGroup> ServiceGroupPointer;
 
 } // namespace Adaptation
 
 #endif /* SQUID_ADAPTATION__FORWARD_H */
+