10#ifndef TEUCHOS_VERSION_HPP 
   11#define TEUCHOS_VERSION_HPP 
   14#ifdef TEUCHOS_STANDALONE_PACKAGE 
   15#  include "Teuchos_version.h" 
   17#  include "Trilinos_version.h" 
   22  std::string Teuchos_Version() {
 
   23#ifdef TEUCHOS_STANDALONE_PACKAGE 
   24    return (
"Teuchos standalone package " TEUCHOS_VERSION_STRING);
 
   26    return (
"Teuchos in Trilinos " TRILINOS_VERSION_STRING);
 
Teuchos header file which uses auto-configuration information to include necessary C++ headers.
 
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...