~james-page/ubuntu/oneiric/jcc/fix-library-linking

« back to all changes in this revision

Viewing changes to _jcc/java/util/Iterator.h

  • Committer: Bazaar Package Importer
  • Author(s): Ludovico Cavedon
  • Date: 2010-07-18 11:16:04 UTC
  • mfrom: (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100718111604-jccjt78g2cusy7h9
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:
40
40
            Object next() const;
41
41
        };
42
42
 
43
 
        extern PyTypeObject Iterator$$Type;
 
43
        extern PyTypeObject PY_TYPE(Iterator);
44
44
 
45
45
        class t_Iterator {
46
46
        public:
54
54
            }
55
55
#endif
56
56
            static PyObject *wrap_Object(const Iterator& object);
 
57
            static PyObject *wrap_jobject(const jobject& object);
57
58
#ifdef _java_generics
58
59
            static PyObject *wrap_Object(const Iterator& object,
59
60
                                         PyTypeObject *T);
 
61
            static PyObject *wrap_jobject(const jobject& object,
 
62
                                          PyTypeObject *T);
60
63
#endif
61
 
            static PyObject *wrap_jobject(const jobject& object);
62
64
        };
63
65
    }
64
66
}