Esempio n. 1
0
///
//  Return true if the file is a directory. If you want this to reflect   
//  any external changes, call zfile_restat before checking this property.
bool QZfile::isDirectory ()
{
    bool rv = zfile_is_directory (self);
    return rv;
}
JNIEXPORT jboolean JNICALL
Java_org_zeromq_czmq_Zfile__1_1isDirectory (JNIEnv *env, jclass c, jlong self)
{
    jboolean is_directory_ = (jboolean) zfile_is_directory ((zfile_t *) (intptr_t) self);
    return is_directory_;
}
Esempio n. 3
0
///
//  Return true if the file is a directory. If you want this to reflect   
//  any external changes, call zfile_restat before checking this property.
bool QmlZfile::isDirectory () {
    return zfile_is_directory (self);
};