1 // xxcallobj internal header
2 // NOTE: no include guard
3
4 template<class _Ret _C_CLASS_ARG0>
5     _Ret _ApplyX(_ARG0_A0_REF) const
6     { // apply to UDT object
7     return (this->_Get()(_A0_A1));
8     }
9
10 template<class _Ret _C_CLASS_ARG0>
11     _Ret _ApplyX(_ARG0_A0_REF)
12     { // apply to UDT object
13     return (this->_Get()(_A0_A1));
14     }
15
16 #if _NARGS != 0
17 template<class _Ret _C_CLASS_ARG0>
18     _Ret _ApplyX(const _ARG0_A0_REF) const
19     { // apply to UDT object
20     return (this->_Get()(_A0_A1));
Lines 21 ... 30 are skipped.
31  * Copyright (c) 1992-2008 by P.J. Plauger.  ALL RIGHTS RESERVED.
32  * Consult your license regarding permissions and restrictions.
33 V5.05:0009 */
34