/// // Return true if the file is writeable by this process. If you want this // to reflect any external changes, call zfile_restat before checking this // property. bool QZfile::isWriteable () { bool rv = zfile_is_writeable (self); return rv; }
JNIEXPORT jboolean JNICALL Java_org_zeromq_czmq_Zfile__1_1isWriteable (JNIEnv *env, jclass c, jlong self) { jboolean is_writeable_ = (jboolean) zfile_is_writeable ((zfile_t *) (intptr_t) self); return is_writeable_; }
/// // Return true if the file is writeable by this process. If you want this // to reflect any external changes, call zfile_restat before checking this // property. bool QmlZfile::isWriteable () { return zfile_is_writeable (self); };