Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lucene / include / org / apache / lucene / codecs / simpletext / SimpleTextCompoundFormat.h
Size: Mime:
#ifndef org_apache_lucene_codecs_simpletext_SimpleTextCompoundFormat_H
#define org_apache_lucene_codecs_simpletext_SimpleTextCompoundFormat_H

#include "org/apache/lucene/codecs/CompoundFormat.h"

namespace java {
  namespace lang {
    class Class;
  }
  namespace io {
    class IOException;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace store {
        class IOContext;
        class Directory;
      }
      namespace index {
        class SegmentInfo;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace codecs {
        namespace simpletext {

          class SimpleTextCompoundFormat : public ::org::apache::lucene::codecs::CompoundFormat {
           public:
            enum {
              mid_init$_d7775b228e076e62,
              mid_getCompoundReader_9171980a11cba2fb,
              mid_write_db61568d541aea9b,
              max_mid
            };

            static ::java::lang::Class *class$;
            static jmethodID *mids$;
            static bool live$;
            static jclass initializeClass(bool);

            explicit SimpleTextCompoundFormat(jobject obj) : ::org::apache::lucene::codecs::CompoundFormat(obj) {
              if (obj != NULL && mids$ == NULL)
                env->getClass(initializeClass);
            }
            SimpleTextCompoundFormat(const SimpleTextCompoundFormat& obj) : ::org::apache::lucene::codecs::CompoundFormat(obj) {}

            SimpleTextCompoundFormat();

            ::org::apache::lucene::store::Directory getCompoundReader(const ::org::apache::lucene::store::Directory &, const ::org::apache::lucene::index::SegmentInfo &, const ::org::apache::lucene::store::IOContext &) const;
            void write(const ::org::apache::lucene::store::Directory &, const ::org::apache::lucene::index::SegmentInfo &, const ::org::apache::lucene::store::IOContext &) const;
          };
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace codecs {
        namespace simpletext {
          extern PyType_Def PY_TYPE_DEF(SimpleTextCompoundFormat);
          extern PyTypeObject *PY_TYPE(SimpleTextCompoundFormat);

          class t_SimpleTextCompoundFormat {
          public:
            PyObject_HEAD
            SimpleTextCompoundFormat object;
            static PyObject *wrap_Object(const SimpleTextCompoundFormat&);
            static PyObject *wrap_jobject(const jobject&);
            static void install(PyObject *module);
            static void initialize(PyObject *module);
          };
        }
      }
    }
  }
}

#endif