diff --git a/src/cas/build/singleThread/Makefile.Host b/src/cas/build/singleThread/Makefile.Host index 3223af635..cffaf1765 100644 --- a/src/cas/build/singleThread/Makefile.Host +++ b/src/cas/build/singleThread/Makefile.Host @@ -45,7 +45,6 @@ LIBSRCS += dgOutBuf.cc LIBSRCS += casCtx.o LIBSRCS += casEventMask.cc LIBSRCS += ioBlocked.cc -LIBSRCS += templInst.cc LIBSRCS += caServerOS.cc LIBSRCS += casIntfOS.cc diff --git a/src/cas/generic/caServer.cc b/src/cas/generic/caServer.cc index fd5eba050..44a075700 100644 --- a/src/cas/generic/caServer.cc +++ b/src/cas/generic/caServer.cc @@ -29,6 +29,9 @@ * * History * $Log$ + * Revision 1.6 1997/06/13 09:15:50 jhill + * connect proto changes + * * Revision 1.5 1997/04/10 19:33:52 jhill * API changes * @@ -52,6 +55,21 @@ #include "dbMapper.h" // ait to dbr types #include "gddAppTable.h" // EPICS application type table +// +// if the compiler supports explicit instantiation of +// template member functions +// +#if defined(EXPL_TEMPL) + // + // From Stroustrups's "The C++ Programming Language" + // Appendix A: r.14.9 + // + // This explicitly instantiates the template class's member + // functions into "templInst.o" + // + template class resTable ; + template class resTable ; +#endif //