mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
22 lines
461 B
C++
22 lines
461 B
C++
|
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
|
|
|
|
#ifndef __java_util_Iterator__
|
|
#define __java_util_Iterator__
|
|
|
|
#pragma interface
|
|
|
|
#include <java/lang/Object.h>
|
|
|
|
class java::util::Iterator : public ::java::lang::Object
|
|
{
|
|
|
|
public:
|
|
virtual jboolean hasNext() = 0;
|
|
virtual ::java::lang::Object * next() = 0;
|
|
virtual void remove() = 0;
|
|
static ::java::lang::Class class$;
|
|
} __attribute__ ((java_interface));
|
|
|
|
#endif // __java_util_Iterator__
|