installed

This commit is contained in:
Jeff Hill
1996-11-22 19:21:55 +00:00
parent 4961e0c799
commit ff0e52d4b4

View File

@@ -0,0 +1,26 @@
//
// $Id$
//
// Explcit instantiation of template instances used by the
// example server
//
//
#include "exServer.h"
#include "gddAppFuncTable.cc"
//
// Sun C++ 4.1 still appears to be lacking support in this area
//
#if !defined(__SUNPRO_CC)
//
// 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 gddAppFuncTable <exPV>;
#endif