Gaudi Framework, version v22r2

Home   Generated: Tue May 10 2011
Public Member Functions | Public Attributes

interfaceMatch< THIS > Struct Template Reference

Helper class for the cast used in the MPL for_each algorithm in the implementation of queryInterface. More...

#include <implements.h>

Collaboration diagram for interfaceMatch< THIS >:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 interfaceMatch (THIS *_instance, const InterfaceID &_tid, void *&_ptr)
template<typename IID >
void operator() (IID)

Public Attributes

const InterfaceIDtarget
 InterfaceID for the requested interface.
void *& ptr
 Pointer to be filled.
THIS * instance
 Value of this.

Detailed Description

template<typename THIS>
struct interfaceMatch< THIS >

Helper class for the cast used in the MPL for_each algorithm in the implementation of queryInterface.

Author:
Marco Clemencic

Definition at line 34 of file implements.h.


Constructor & Destructor Documentation

template<typename THIS>
interfaceMatch< THIS >::interfaceMatch ( THIS *  _instance,
const InterfaceID _tid,
void *&  _ptr 
) [inline]

Definition at line 41 of file implements.h.

                                                                        :
    target(_tid),
    ptr(_ptr),
    instance(_instance){}

Member Function Documentation

template<typename THIS>
template<typename IID >
void interfaceMatch< THIS >::operator() ( IID   ) [inline]

Definition at line 47 of file implements.h.

                               {
    if ((!ptr) && target.versionMatch(IID::interfaceID())) {
      ptr = reinterpret_cast<void*>(static_cast<typename IID::iface_type*>(instance));
    }
  }

Member Data Documentation

template<typename THIS>
THIS* interfaceMatch< THIS >::instance

Value of this.

Definition at line 40 of file implements.h.

template<typename THIS>
void*& interfaceMatch< THIS >::ptr

Pointer to be filled.

Definition at line 38 of file implements.h.

template<typename THIS>
const InterfaceID& interfaceMatch< THIS >::target

InterfaceID for the requested interface.

Definition at line 36 of file implements.h.


The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Tue May 10 2011 18:54:52 for Gaudi Framework, version v22r2 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004