123456789101112131415161718192021222324252627282930313233343536 |
- /* $XConsortium: nsgmls_inst.m4 /main/2 1996/08/09 15:33:44 mgreess $ */
- // Copyright (c) 1994 James Clark
- // See the file COPYING for copying permission.
- #include "config.h"
- #ifdef SP_MANUAL_INST
- #define SP_DEFINE_TEMPLATES
- #include "Vector.h"
- #include "PointerTable.h"
- #include "OwnerTable.h"
- #include "Vector.h"
- #include "IQueue.h"
- #include "Owner.h"
- #undef SP_DEFINE_TEMPLATES
- #include "StringSet.h"
- #include "RastEventHandler.h"
- #ifdef SP_NAMESPACE
- namespace SP_NAMESPACE {
- #endif
- __instantiate(`PointerTable<StringC *, StringC, Hash, StringSetKey>')
- __instantiate(`OwnerTable<StringC, StringC, Hash, StringSetKey>')
- __instantiate(Vector<StringC *>)
- __instantiate(Owner<EndPrologEvent>)
- __instantiate(IQueue<LinkRulePi>)
- __instantiate(Vector<Vector<size_t> >)
- #ifdef SP_NAMESPACE
- }
- #endif
- #endif /* SP_MANUAL_INST */
|