~ubuntu-branches/ubuntu/oneiric/openjade1.3/oneiric

« back to all changes in this revision

Viewing changes to spgrove/grove_inst.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Yann Dirson
  • Date: 2002-04-09 00:01:50 UTC
  • Revision ID: james.westby@ubuntu.com-20020409000150-c27cezvm643ashsl
Tags: 1.3.1-2
Made debian/rules not fail on "make clean" failure, just as usual
(Closes: #141672).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifdef SP_NAMESPACE
 
2
namespace SP_NAMESPACE {
 
3
#endif
 
4
 
 
5
 
 
6
#ifdef SP_NAMESPACE
 
7
}
 
8
#endif
 
9
// Copyright (c) 1996, 1997 James Clark
 
10
// See the file copying.txt for copying permission.
 
11
 
 
12
#include "config.h"
 
13
 
 
14
#ifdef SP_MANUAL_INST
 
15
 
 
16
#define SP_DEFINE_TEMPLATES
 
17
#include "PointerTable.h"
 
18
#include "Vector.h"
 
19
#undef SP_DEFINE_TEMPLATES
 
20
 
 
21
#include "Hash.h"
 
22
#include "StringC.h"
 
23
#include "Node.h"
 
24
 
 
25
#ifdef SP_NAMESPACE
 
26
namespace SP_NAMESPACE {
 
27
#endif
 
28
 
 
29
class ElementChunk;
 
30
 
 
31
#ifdef __DECCXX
 
32
#pragma define_template PointerTable<ElementChunk *,StringC,Hash,ElementChunk>
 
33
#else
 
34
#ifdef __xlC__
 
35
#pragma define(PointerTable<ElementChunk *,StringC,Hash,ElementChunk>)
 
36
#else
 
37
#ifdef SP_ANSI_CLASS_INST
 
38
template class PointerTable<ElementChunk *,StringC,Hash,ElementChunk>;
 
39
#else
 
40
typedef PointerTable<ElementChunk *,StringC,Hash,ElementChunk> Dummy_0;
 
41
#endif
 
42
#endif
 
43
#endif
 
44
#ifdef __DECCXX
 
45
#pragma define_template Vector<ElementChunk *>
 
46
#else
 
47
#ifdef __xlC__
 
48
#pragma define(Vector<ElementChunk *>)
 
49
#else
 
50
#ifdef SP_ANSI_CLASS_INST
 
51
template class Vector<ElementChunk *>;
 
52
#else
 
53
typedef Vector<ElementChunk *> Dummy_1;
 
54
#endif
 
55
#endif
 
56
#endif
 
57
#ifdef __DECCXX
 
58
#pragma define_template Vector<ConstPtr<Origin> >
 
59
#else
 
60
#ifdef __xlC__
 
61
#pragma define(Vector<ConstPtr<Origin> >)
 
62
#else
 
63
#ifdef SP_ANSI_CLASS_INST
 
64
template class Vector<ConstPtr<Origin> >;
 
65
#else
 
66
typedef Vector<ConstPtr<Origin> > Dummy_2;
 
67
#endif
 
68
#endif
 
69
#endif
 
70
 
 
71
#ifdef SP_NAMESPACE
 
72
}
 
73
#endif
 
74
 
 
75
#endif /* SP_MANUAL_INST */