/* Example programs from the book Scientific and Engineering Programming in C++: An Introduction with Advanced Techniques and Examples, Addison-Wesley, 1994. (c) COPYRIGHT INTERNATIONAL BUSINESS MACHINES CORPORATION 1994. ALL RIGHTS RESERVED. See README file for further details. */ #ifndef FunctionApplicationH #define FunctionApplicationH template void apply(T (*f)(const T&), Array1d& a); template void apply(T (*f)(T), Array1d& a); template void apply(T (*f)(T), ConcreteArray1dRef a); template void apply(T (*f)(const T&), ConcreteArray1dRef a); #ifdef XLC_QNOTEMPINC #include "Function/FunctionApplication.c" #endif #endif