Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_store_OutputStreamIndexOutput_H
#define org_apache_lucene_store_OutputStreamIndexOutput_H
#include "org/apache/lucene/store/IndexOutput.h"
namespace java {
namespace lang {
class String;
class Class;
}
namespace io {
class OutputStream;
class IOException;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace store {
class OutputStreamIndexOutput : public ::org::apache::lucene::store::IndexOutput {
public:
enum {
mid_init$_be3df555c4874a18,
mid_close_d7775b228e076e62,
mid_getChecksum_062ad918b5794303,
mid_getFilePointer_062ad918b5794303,
mid_writeByte_fb3f7572a3943c8b,
mid_writeBytes_572579157b228a11,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit OutputStreamIndexOutput(jobject obj) : ::org::apache::lucene::store::IndexOutput(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
OutputStreamIndexOutput(const OutputStreamIndexOutput& obj) : ::org::apache::lucene::store::IndexOutput(obj) {}
OutputStreamIndexOutput(const ::java::lang::String &, const ::java::lang::String &, const ::java::io::OutputStream &, jint);
void close() const;
jlong getChecksum() const;
jlong getFilePointer() const;
void writeByte(jbyte) const;
void writeBytes(const JArray< jbyte > &, jint, jint) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace store {
extern PyType_Def PY_TYPE_DEF(OutputStreamIndexOutput);
extern PyTypeObject *PY_TYPE(OutputStreamIndexOutput);
class t_OutputStreamIndexOutput {
public:
PyObject_HEAD
OutputStreamIndexOutput object;
static PyObject *wrap_Object(const OutputStreamIndexOutput&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif