Class Hierarchy   Compound List   File List   Header Files   Compound Members   File Members  

iokernel/cast.h

This is the verbatim text of the cast.h include file.
/* -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef J2S_UTILS__CAST_H
#define J2S_UTILS__CAST_H

template< class T >
T* j2s_to( const void* vp ) {

  #ifndef USE_DYNAMIC_CAST
  return (T *) vp;
  #else
  return dynamic_cast<T *>(vp);
  #endif
}

# endif /* J2S_UTILS__CAST_H */

Generated at Wed Apr 25 17:35:13 2001 for NCI SUIF by doxygen  written by Dimitri van Heesch, © 1997-1999