dispatcher_3.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 #ifndef LASS_GUARDIAN_OF_INCLUSION_UTIL_IMPL_DISPATCHER_3_H
00053 #define LASS_GUARDIAN_OF_INCLUSION_UTIL_IMPL_DISPATCHER_3_H
00054
00055 #include "dispatcher_allocator.h"
00056
00057
00058
00059 namespace lass
00060 {
00061 namespace util
00062 {
00063 namespace impl
00064 {
00065
00066
00067
00068
00069
00070
00071 template
00072 <
00073 typename P1, typename P2, typename P3
00074 >
00075 class Dispatcher3: public TDispatcherAllocatorBase
00076 {
00077 public:
00078
00079 Dispatcher3() {}
00080 virtual ~Dispatcher3() {}
00081
00082 void call(typename util::CallTraits<P1>::TParam iP1, typename util::CallTraits<P2>::TParam iP2, typename util::CallTraits<P3>::TParam iP3) const
00083 {
00084 doCall(iP1, iP2, iP3);
00085 }
00086
00087 private:
00088
00089 virtual void doCall(typename util::CallTraits<P1>::TParam iP1, typename util::CallTraits<P2>::TParam iP2, typename util::CallTraits<P3>::TParam iP3) const = 0;
00090
00091 Dispatcher3(const Dispatcher3<P1, P2, P3>& iOther);
00092 Dispatcher3& operator=(const Dispatcher3<P1, P2, P3>& iOther);
00093 };
00094
00095
00096
00097
00098
00099
00100
00101
00102 template
00103 <
00104 typename P1, typename P2, typename P3,
00105 typename FunctionType
00106 >
00107 class Dispatcher3Function: public Dispatcher3<P1, P2, P3>
00108 {
00109 public:
00110
00111 typedef FunctionType TFunction;
00112
00113 Dispatcher3Function(typename CallTraits<TFunction>::TParam iFunction):
00114 function_(iFunction)
00115 {
00116 }
00117
00118 private:
00119
00120 void doCall(typename util::CallTraits<P1>::TParam iP1, typename util::CallTraits<P2>::TParam iP2, typename util::CallTraits<P3>::TParam iP3) const
00121 {
00122 function_(iP1, iP2, iP3);
00123 }
00124
00125 TFunction function_;
00126 };
00127
00128
00129
00130
00131
00132
00133
00134
00135 template
00136 <
00137 typename P1, typename P2, typename P3,
00138 typename ObjectPtr, typename Method
00139 >
00140 class Dispatcher3Method: public Dispatcher3<P1, P2, P3>
00141 {
00142 public:
00143
00144 Dispatcher3Method(typename CallTraits<ObjectPtr>::TParam iObject,
00145 typename CallTraits<Method>::TParam iMethod):
00146 object_(iObject),
00147 method_(iMethod)
00148 {
00149 }
00150
00151 private:
00152
00153 void doCall(typename util::CallTraits<P1>::TParam iP1, typename util::CallTraits<P2>::TParam iP2, typename util::CallTraits<P3>::TParam iP3) const
00154 {
00155 ((*object_).*method_)(iP1, iP2, iP3);
00156 }
00157
00158 ObjectPtr object_;
00159 Method method_;
00160 };
00161
00162
00163
00164 }
00165
00166 }
00167
00168 }
00169
00170 #endif // Guardian of Inclusion
00171
00172
00173