37 lines
821 B
Text
37 lines
821 B
Text
// Copyright (c) 1994 James Clark
|
|
// See the file COPYING for copying permission.
|
|
|
|
#include "splib.h"
|
|
|
|
#ifdef SP_MANUAL_INST
|
|
|
|
#define SP_DEFINE_TEMPLATES
|
|
#include "Vector.h"
|
|
#include "Owner.h"
|
|
#include "Options.h"
|
|
#undef SP_DEFINE_TEMPLATES
|
|
|
|
#include <stddef.h>
|
|
#include "CodingSystem.h"
|
|
#include "CmdLineApp.h"
|
|
#include "Event.h"
|
|
|
|
#ifdef SP_NAMESPACE
|
|
namespace SP_NAMESPACE {
|
|
#endif
|
|
|
|
__instantiate(Vector<const CmdLineApp::AppChar *>)
|
|
__instantiate(Owner<Encoder>)
|
|
__instantiate(Options<CmdLineApp::AppChar>)
|
|
__instantiate(Owner<EventHandler>)
|
|
__instantiate(Vector<MessageFragment>)
|
|
__instantiate(Vector<MessageType1>)
|
|
__instantiate(LongOption<CmdLineApp::AppChar>)
|
|
__instantiate(Vector<LongOption<CmdLineApp::AppChar> >)
|
|
__instantiate(Owner<OutputCharStream>)
|
|
|
|
#ifdef SP_NAMESPACE
|
|
}
|
|
#endif
|
|
|
|
#endif /* SP_MANUAL_INST */
|