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

« back to all changes in this revision

Viewing changes to spam/spam_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) 1995 James Clark
 
10
// See the file COPYING for copying permission.
 
11
 
 
12
#include "config.h"
 
13
 
 
14
#ifdef SP_MANUAL_INST
 
15
 
 
16
#define SP_DEFINE_TEMPLATES
 
17
#include "NCVector.h"
 
18
#undef SP_DEFINE_TEMPLATES
 
19
 
 
20
#include "CopyEventHandler.h"
 
21
 
 
22
#ifdef SP_NAMESPACE
 
23
namespace SP_NAMESPACE {
 
24
#endif
 
25
 
 
26
#ifdef __DECCXX
 
27
#pragma define_template NCVector<CopyEventHandlerEntityInfo>
 
28
#else
 
29
#ifdef __xlC__
 
30
#pragma define(NCVector<CopyEventHandlerEntityInfo>)
 
31
#else
 
32
#ifdef SP_ANSI_CLASS_INST
 
33
template class NCVector<CopyEventHandlerEntityInfo>;
 
34
#else
 
35
typedef NCVector<CopyEventHandlerEntityInfo> Dummy_0;
 
36
#endif
 
37
#endif
 
38
#endif
 
39
 
 
40
#ifdef SP_NAMESPACE
 
41
}
 
42
#endif
 
43
 
 
44
#endif /* SP_MANUAL_INST */