removed templInst.cc

This commit is contained in:
Jeff Hill
1997-06-25 05:53:52 +00:00
parent b28a06a474
commit 3179fc2211
3 changed files with 15 additions and 28 deletions

View File

@@ -10,7 +10,6 @@ PROD_LIBS := cas ca gdd Com
SRCS += main.cc
SRCS += directoryServer.cc
SRCS += templInst.cc
PROD := caDirServ

View File

@@ -8,6 +8,21 @@
const pvInfo *pvInfo::pFirst;
//
// 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 <pvEntry,stringId>;
#endif
//
// directoryServer::directoryServer()
//

View File

@@ -1,27 +0,0 @@
//
// $Id$
//
// Explcit instantiation of template instances used by the
// example server
//
//
#include "directoryServer.h"
#include "resourceLib.cc"
//
// 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 <pvEntry,stringId>;
#endif