10#ifndef TEUCHOS_IMPLICIT_CAST_HPP 
   11#define TEUCHOS_IMPLICIT_CAST_HPP 
   48template<
class TypeTo, 
class TypeFrom>
 
   83template<
class TypeTo, 
class TypeFrom>
 
  117template<
class TypeTo, 
class TypeFrom>
 
Teuchos header file which uses auto-configuration information to include necessary C++ headers.
 
Smart reference counting pointer class for automatic garbage collection.
 
TypeTo & implicit_ref_cast(TypeFrom &t)
Perform an implicit cast of reference types with a reference being returned.
 
TypeTo implicit_cast(const TypeFrom &t)
Perform an implicit cast of concrete types with the casted object returned by value.
 
TypeTo * implicit_ptr_cast(TypeFrom *t)
Perform an implicit cast of pointer types with a pointer being returned.
 
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...