Changeset 9722 in orxonox.OLD for branches/new_class_id/src/lib/util
- Timestamp:
- Sep 4, 2006, 11:54:30 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/util/sigslot/signal.h
r9406 r9722 96 96 { 97 97 public: 98 virtual ~_connection_base0() {}; 98 99 virtual has_slots<mt_policy>* getdest() const = 0; 99 100 virtual void emit() = 0; … … 106 107 { 107 108 public: 109 virtual ~_connection_base1() {}; 108 110 virtual has_slots<mt_policy>* getdest() const = 0; 109 111 virtual void emit(arg1_type) = 0; … … 116 118 { 117 119 public: 120 virtual ~_connection_base2() {}; 118 121 virtual has_slots<mt_policy>* getdest() const = 0; 119 122 virtual void emit(arg1_type, arg2_type) = 0; … … 126 129 { 127 130 public: 131 virtual ~_connection_base3() {}; 128 132 virtual has_slots<mt_policy>* getdest() const = 0; 129 133 virtual void emit(arg1_type, arg2_type, arg3_type) = 0; … … 136 140 { 137 141 public: 142 virtual ~_connection_base4() {}; 138 143 virtual has_slots<mt_policy>* getdest() const = 0; 139 144 virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type) = 0; … … 147 152 { 148 153 public: 154 virtual ~_connection_base5() {}; 149 155 virtual has_slots<mt_policy>* getdest() const = 0; 150 156 virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, … … 161 167 { 162 168 public: 169 virtual ~_connection_base6() {}; 163 170 virtual has_slots<mt_policy>* getdest() const = 0; 164 171 virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type, … … 175 182 { 176 183 public: 184 virtual ~_connection_base7() {}; 177 185 virtual has_slots<mt_policy>* getdest() const = 0; 178 186 virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type, … … 189 197 { 190 198 public: 199 virtual ~_connection_base8() {}; 191 200 virtual has_slots<mt_policy>* getdest() const = 0; 192 201 virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type,
Note: See TracChangeset
for help on using the changeset viewer.