1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
#ifdef SP_NAMESPACE
namespace SP_NAMESPACE {
#endif
#ifdef SP_NAMESPACE
}
#endif
// 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
#ifdef __DECCXX
#pragma define_template Vector<const CmdLineApp::AppChar *>
#else
#ifdef __xlC__
#pragma define(Vector<const CmdLineApp::AppChar *>)
#else
#ifdef SP_ANSI_CLASS_INST
template class Vector<const CmdLineApp::AppChar *>;
#else
typedef Vector<const CmdLineApp::AppChar *> Dummy_0;
#endif
#endif
#endif
#ifdef __DECCXX
#pragma define_template Owner<Encoder>
#else
#ifdef __xlC__
#pragma define(Owner<Encoder>)
#else
#ifdef SP_ANSI_CLASS_INST
template class Owner<Encoder>;
#else
typedef Owner<Encoder> Dummy_1;
#endif
#endif
#endif
#ifdef __DECCXX
#pragma define_template Options<CmdLineApp::AppChar>
#else
#ifdef __xlC__
#pragma define(Options<CmdLineApp::AppChar>)
#else
#ifdef SP_ANSI_CLASS_INST
template class Options<CmdLineApp::AppChar>;
#else
typedef Options<CmdLineApp::AppChar> Dummy_2;
#endif
#endif
#endif
#ifdef __DECCXX
#pragma define_template Owner<EventHandler>
#else
#ifdef __xlC__
#pragma define(Owner<EventHandler>)
#else
#ifdef SP_ANSI_CLASS_INST
template class Owner<EventHandler>;
#else
typedef Owner<EventHandler> Dummy_3;
#endif
#endif
#endif
#ifdef __DECCXX
#pragma define_template Vector<MessageFragment>
#else
#ifdef __xlC__
#pragma define(Vector<MessageFragment>)
#else
#ifdef SP_ANSI_CLASS_INST
template class Vector<MessageFragment>;
#else
typedef Vector<MessageFragment> Dummy_4;
#endif
#endif
#endif
#ifdef __DECCXX
#pragma define_template Vector<MessageType1>
#else
#ifdef __xlC__
#pragma define(Vector<MessageType1>)
#else
#ifdef SP_ANSI_CLASS_INST
template class Vector<MessageType1>;
#else
typedef Vector<MessageType1> Dummy_5;
#endif
#endif
#endif
#ifdef __DECCXX
#pragma define_template LongOption<CmdLineApp::AppChar>
#else
#ifdef __xlC__
#pragma define(LongOption<CmdLineApp::AppChar>)
#else
#ifdef SP_ANSI_CLASS_INST
template class LongOption<CmdLineApp::AppChar>;
#else
typedef LongOption<CmdLineApp::AppChar> Dummy_6;
#endif
#endif
#endif
#ifdef __DECCXX
#pragma define_template Vector<LongOption<CmdLineApp::AppChar> >
#else
#ifdef __xlC__
#pragma define(Vector<LongOption<CmdLineApp::AppChar> >)
#else
#ifdef SP_ANSI_CLASS_INST
template class Vector<LongOption<CmdLineApp::AppChar> >;
#else
typedef Vector<LongOption<CmdLineApp::AppChar> > Dummy_7;
#endif
#endif
#endif
#ifdef __DECCXX
#pragma define_template Owner<OutputCharStream>
#else
#ifdef __xlC__
#pragma define(Owner<OutputCharStream>)
#else
#ifdef SP_ANSI_CLASS_INST
template class Owner<OutputCharStream>;
#else
typedef Owner<OutputCharStream> Dummy_8;
#endif
#endif
#endif
#ifdef SP_NAMESPACE
}
#endif
#endif /* SP_MANUAL_INST */
|