/*! \file f77proto.h * \brief prototypes for Fortran interface (prototypes) * * ---------------------------------------------------------------------------- * * $Id: f77proto.h,v 1.3 2002-12-23 18:07:32 forbrig Exp $ * \author Thomas Forbriger * \date 22/12/2002 * * prototypes for Fortran interface (prototypes) * * Copyright (c) 2002 by Thomas Forbriger (IMG Frankfurt) * * REVISIONS and CHANGES * - 22/12/2002 V1.0 Thomas Forbriger * * ============================================================================ */ // include guard #ifndef AFF_F77PROTO_H_VERSION #define AFF_F77PROTO_H_VERSION \ "AFF_F77PROTO_H V1.0 " #define AFF_F77PROTO_H_CVSID \ "$Id: f77proto.h,v 1.3 2002-12-23 18:07:32 forbrig Exp $" #include #include //! This namespace collects all test functions for interfacing Fortran 77 namespace f77interface { typedef aff::Array > Tcarray; typedef aff::Array > Tzarray; int fill(const aff::Array& fa); int fillarray(const aff::Array& v1, const aff::Array& v2); Tcarray sums(); Tzarray viewcommon(); } // namespace f77interface #endif // AFF_F77PROTO_H_VERSION (includeguard) /* ----- END OF f77proto.h ----- */