00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file BasicTypeTraits_T.h 00006 * 00007 * $Id: BasicTypeTraits_T.h 75662 2006-11-28 22:20:13Z parsons $ 00008 * 00009 * Template traits useful for programming with predefined types. 00010 * 00011 * @author Jeff Parsons <j.parsons@vanderbilt.edu> 00012 */ 00013 //============================================================================= 00014 00015 #ifndef BASIC_TYPE_TRAITS_T_H 00016 #define BASIC_TYPE_TRAITS_T_H 00017 00018 #include /**/ "ace/pre.h" 00019 00020 #include "tao/orbconf.h" 00021 00022 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00023 # pragma once 00024 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00025 00026 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00027 00028 namespace TAO 00029 { 00030 // Forward declaration forces specialization for each type used, 00031 // necessary since each instantiated struct has values that cannot 00032 // be set generically, so they must be set explicitly and exported. 00033 template<typename T> 00034 struct BasicTypeTraits; 00035 } 00036 00037 TAO_END_VERSIONED_NAMESPACE_DECL 00038 00039 #include /**/ "ace/post.h" 00040 00041 #endif /* BASIC_TYPE_TRAITS_T_H */ 00042