OLD | NEW |
(Empty) | |
| 1 $$ This is a pump file for generating file templates. Pump is a python |
| 2 $$ script that is part of the Google Test suite of utilities. Description |
| 3 $$ can be found here: |
| 4 $$ |
| 5 $$ http://code.google.com/p/googletest/wiki/PumpManual |
| 6 $$ |
| 7 |
| 8 $var MAX_ARITY = 6 |
| 9 |
| 10 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 11 // Use of this source code is governed by a BSD-style license that can be |
| 12 // found in the LICENSE file. |
| 13 |
| 14 // Specializations of FunctionTraits<> for Windows specific calling |
| 15 // conventions. Please see base/bind_internal.h for more info. |
| 16 |
| 17 #ifndef BASE_BIND_INTERNAL_WIN_H_ |
| 18 #define BASE_BIND_INTERNAL_WIN_H_ |
| 19 #pragma once |
| 20 |
| 21 namespace base { |
| 22 namespace internal { |
| 23 |
| 24 template <typename Sig> |
| 25 struct FunctionTraits; |
| 26 |
| 27 $range ARITY 0..MAX_ARITY |
| 28 $for ARITY [[ |
| 29 $range ARG 1..ARITY |
| 30 |
| 31 // __stdcall Function: Arity $(ARITY). |
| 32 template <typename R[[]] |
| 33 $if ARITY > 0[[, ]] $for ARG , [[typename X$(ARG)]]> |
| 34 struct FunctionTraits<R(__stdcall *)($for ARG , [[X$(ARG)]])> { |
| 35 typedef R (*NormalizedSig)($for ARG , [[X$(ARG)]]); |
| 36 typedef false_type IsMethod; |
| 37 }; |
| 38 |
| 39 // __fastcall Function: Arity $(ARITY). |
| 40 template <typename R[[]] |
| 41 $if ARITY > 0[[, ]] $for ARG , [[typename X$(ARG)]]> |
| 42 struct FunctionTraits<R(__fastcall *)($for ARG , [[X$(ARG)]])> { |
| 43 typedef R (*NormalizedSig)($for ARG , [[X$(ARG)]]); |
| 44 typedef false_type IsMethod; |
| 45 }; |
| 46 |
| 47 ]] $$for ARITY |
| 48 |
| 49 } // namespace internal |
| 50 } // namespace base |
| 51 |
| 52 #endif // BASE_BIND_INTERNAL_WIN_H_ |
OLD | NEW |