summaryrefslogtreecommitdiff
path: root/sysutils/searchmonkey/files/patch-Utility.h
blob: 18ac07b0b60516f192e1957da20c2b0906c42156 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--- Utility.h.orig	2010-05-16 20:37:32.000000000 +0900
+++ Utility.h	2012-10-17 06:41:46.000000000 +0900
@@ -92,16 +92,6 @@
     CallEach(observers, searchable, &Subject::Register);
     here the Subject is the type of Caller
 */
-template <typename CalleeContainer, typename Caller, typename Op>
-void CallEach(const CalleeContainer& container, Caller& caller, Op op)
-{
-    for_each(container.begin(), container.end(), bind1st(mem_fun(op), caller));
-}
-template <typename T>
-bool IsValueInRange(T value, T lowerBound, T upperBound)
-{
-    return LowerBoundFit(value, lowerBound) && UpperBoundFit(value, upperBound);
-}
 template <typename T>
 bool BoundSpecified(T boundValue)
 {
@@ -129,5 +119,15 @@
 
     return false;
 }
+template <typename CalleeContainer, typename Caller, typename Op>
+void CallEach(const CalleeContainer& container, Caller& caller, Op op)
+{
+    for_each(container.begin(), container.end(), bind1st(mem_fun(op), caller));
+}
+template <typename T>
+bool IsValueInRange(T value, T lowerBound, T upperBound)
+{
+    return LowerBoundFit(value, lowerBound) && UpperBoundFit(value, upperBound);
+}
 
 #endif