removed templInst.cc

This commit is contained in:
Jeff Hill
1997-06-25 05:09:00 +00:00
parent c5fc3bb8de
commit d7868a20f1
2 changed files with 18 additions and 1 deletions

View File

@@ -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

View File

@@ -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 <casEventMaskEntry, stringId>;
template class resTable <casRes, uintId>;
#endif
//