~ubuntu-branches/ubuntu/trusty/jcc/trusty-proposed

« back to all changes in this revision

Viewing changes to jcc/sources/JObject.h

  • Committer: Bazaar Package Importer
  • Author(s): Ludovico Cavedon
  • Date: 2010-07-18 11:16:04 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100718111604-pmncb3js701dk0qp
Tags: 2.6-1
* New upstream release.
* Fix typo in README.Debian.
* Refresh avoid-ftbfs-unknown-archs.patch.
* Update Standards-Version to 3.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <stdio.h>
21
21
#include "JCCEnv.h"
22
22
 
23
 
class JObject {
 
23
class _DLL_EXPORT JObject {
24
24
public:
25
25
    jobject this$;
26
26
    int id;  /* zero when this$ is a weak ref */
91
91
#ifdef PYTHON
92
92
 
93
93
#include <Python.h>
 
94
#include "macros.h"
94
95
 
95
96
class t_JObject {
96
97
public:
98
99
    JObject object;
99
100
};
100
101
 
101
 
extern PyTypeObject JObject$$Type;
 
102
extern PyTypeObject PY_TYPE(JObject);
102
103
 
103
104
#endif /* PYTHON */
104
105