GlsMenu
gls_functor.h File Reference

This file defines generic function object (functor) classes. More...

Go to the source code of this file.

Data Structures

class  GlsFunctor_T< T >
 
class  GlsStaticMemberFunctor_T< T >
 
class  GlsMemberFunctor_T< O, T >
 
class  GlsConstMemberFunctor_T< O, T >
 
class  GlsFunctor1_T< T >
 
class  GlsStaticMemberFunctor1_T< T >
 
class  GlsMemberFunctor1_T< O, T >
 
class  GlsConstMemberFunctor1_T< O, T >
 
class  GlsFunctor2_T< T1, T2 >
 
class  GlsStaticMemberFunctor2_T< O, T1, T2 >
 
class  GlsMemberFunctor2_T< O, T1, T2 >
 
class  GlsConstMemberFunctor2_T< O, T1, T2 >
 
class  GlsFunctor3_T< T1, T2, T3 >
 
class  GlsStaticMemberFunctor3_T< O, T1, T2, T3 >
 
class  GlsMemberFunctor3_T< O, T1, T2, T3 >
 
class  GlsConstMemberFunctor3_T< O, T1, T2, T3 >
 

Functions

template<class T >
GlsStaticMemberFunctor_T< T > * GlsFunctor (T(*f)())
 
template<class O , class T >
GlsMemberFunctor_T< O, T > * GlsFunctor (O &o, T(O::*f)())
 
template<class O , class T >
GlsConstMemberFunctor_T< O, T > * GlsFunctor (const O &o, T(O::*f)() const )
 
template<class T >
GlsStaticMemberFunctor1_T< T > * GlsFunctor (void(*f)(T))
 
template<class O , class T >
GlsMemberFunctor1_T< O, T > * GlsFunctor (O &o, void(O::*f)(T))
 
template<class O , class T >
GlsConstMemberFunctor1_T< O, T > * GlsFunctor (const O &o, void(O::*f)(T) const )
 
template<class O , class T1 , class T2 >
GlsStaticMemberFunctor2_T< O, T1, T2 > * GlsFunctor (void(O::*f)(T1, T2))
 
template<class O , class T1 , class T2 >
GlsMemberFunctor2_T< O, T1, T2 > * GlsFunctor (O &o, void(O::*f)(T1, T2))
 
template<class O , class T1 , class T2 >
GlsConstMemberFunctor2_T< O, T1, T2 > * GlsFunctor (const O &o, void(O::*f)(T1, T2) const )
 
template<class O , class T1 , class T2 , class T3 >
GlsStaticMemberFunctor3_T< O, T1, T2, T3 > * GlsFunctor (void(O::*f)(T1, T2, T3))
 
template<class O , class T1 , class T2 , class T3 >
GlsMemberFunctor3_T< O, T1, T2, T3 > * GlsFunctor (O &o, void(O::*f)(T1, T2, T3))
 
template<class O , class T1 , class T2 , class T3 >
GlsConstMemberFunctor3_T< O, T1, T2, T3 > * GlsFunctor (const O &o, void(O::*f)(T1, T2, T3) const )
 

Detailed Description

This file defines generic function object (functor) classes.

Copyright Information

Copyright (c) 2012 The DiSTI Corporation.
11301 Corporate Blvd; Suite 100
Orlando, Florida 32817
USA

All rights reserved.

This Software contains proprietary trade secrets of DiSTI and may not be reproduced, in whole or part, in any form, or by any means of electronic, mechanical, or otherwise, without the written permission of DiSTI. Said permission may be derived through the purchase of applicable DiSTI product licenses which detail the distribution rights of this content and any Derivative Works based on this or other copyrighted DiSTI Software.

NO WARRANTY. THE SOFTWARE IS PROVIDED "AS-IS," WITHOUT WARRANTY OF ANY KIND, AND ANY USE OF THIS SOFTWARE PRODUCT IS AT YOUR OWN RISK. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, DISTI AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE.

LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL DISTI OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF DISTI HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. DISTI'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY SHALL NOT EXCEED FIVE DOLLARS (US$5.00).

The aforementioned terms and restrictions are governed by the laws of the State of Florida and the United States of America.

Definition in file gls_functor.h.

Function Documentation

template<class T >
GlsStaticMemberFunctor_T<T>* GlsFunctor ( T(*)()  f)
template<class O , class T >
GlsMemberFunctor_T<O, T>* GlsFunctor ( O &  o,
T(O::*)()  f 
)

Definition at line 118 of file gls_functor.h.

template<class O , class T >
GlsConstMemberFunctor_T<O, T>* GlsFunctor ( const O &  o,
T(O::*)() const  f 
)

Definition at line 126 of file gls_functor.h.

template<class T >
GlsStaticMemberFunctor1_T<T>* GlsFunctor ( void(*)(T)  f)

Definition at line 196 of file gls_functor.h.

template<class O , class T >
GlsMemberFunctor1_T<O, T>* GlsFunctor ( O &  o,
void(O::*)(T)  f 
)

Definition at line 204 of file gls_functor.h.

template<class O , class T >
GlsConstMemberFunctor1_T<O, T>* GlsFunctor ( const O &  o,
void(O::*)(T) const  f 
)

Definition at line 212 of file gls_functor.h.

template<class O , class T1 , class T2 >
GlsStaticMemberFunctor2_T<O, T1, T2>* GlsFunctor ( void(O::*)(T1, T2)  f)

Definition at line 282 of file gls_functor.h.

template<class O , class T1 , class T2 >
GlsMemberFunctor2_T<O, T1, T2>* GlsFunctor ( O &  o,
void(O::*)(T1, T2)  f 
)

Definition at line 290 of file gls_functor.h.

template<class O , class T1 , class T2 >
GlsConstMemberFunctor2_T<O, T1, T2>* GlsFunctor ( const O &  o,
void(O::*)(T1, T2) const  f 
)

Definition at line 298 of file gls_functor.h.

template<class O , class T1 , class T2 , class T3 >
GlsStaticMemberFunctor3_T<O, T1, T2, T3>* GlsFunctor ( void(O::*)(T1, T2, T3)  f)

Definition at line 368 of file gls_functor.h.

template<class O , class T1 , class T2 , class T3 >
GlsMemberFunctor3_T<O, T1, T2, T3>* GlsFunctor ( O &  o,
void(O::*)(T1, T2, T3)  f 
)

Definition at line 376 of file gls_functor.h.

template<class O , class T1 , class T2 , class T3 >
GlsConstMemberFunctor3_T<O, T1, T2, T3>* GlsFunctor ( const O &  o,
void(O::*)(T1, T2, T3) const  f 
)

Definition at line 384 of file gls_functor.h.