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 / store / HardlinkCopyDirectoryWrapper.h
Size: Mime:
#ifndef org_apache_lucene_store_HardlinkCopyDirectoryWrapper_H
#define org_apache_lucene_store_HardlinkCopyDirectoryWrapper_H

#include "org/apache/lucene/store/FilterDirectory.h"

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

namespace org {
  namespace apache {
    namespace lucene {
      namespace store {

        class HardlinkCopyDirectoryWrapper : public ::org::apache::lucene::store::FilterDirectory {
         public:
          enum {
            mid_init$_c65c15e8ea3ac336,
            mid_copyFrom_0270609cd0efd1d8,
            max_mid
          };

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

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

          HardlinkCopyDirectoryWrapper(const ::org::apache::lucene::store::Directory &);

          void copyFrom(const ::org::apache::lucene::store::Directory &, const ::java::lang::String &, const ::java::lang::String &, const ::org::apache::lucene::store::IOContext &) const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace store {
        extern PyType_Def PY_TYPE_DEF(HardlinkCopyDirectoryWrapper);
        extern PyTypeObject *PY_TYPE(HardlinkCopyDirectoryWrapper);

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

#endif