⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 svnbase.h

📁 subversion-1.4.3-1.tar.gz 配置svn的源码
💻 H
字号:
/** * @copyright * ==================================================================== * Copyright (c) 2003-2004 CollabNet.  All rights reserved. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution.  The terms * are also available at http://subversion.tigris.org/license-1.html. * If newer versions of this license are posted there, you may use a * newer version instead, at your option. * * This software consists of voluntary contributions made by many * individuals.  For exact contribution history, see the revision * history and logs, available at http://subversion.tigris.org/. * ==================================================================== * @endcopyright * * @file SVNBase.h * @brief Interface of the class SVNBase */#if !defined(AFX_SVNBASE_H__ABF82C7E_0C50_40EA_8C88_2DFDF20B3A47__INCLUDED_)#define AFX_SVNBASE_H__ABF82C7E_0C50_40EA_8C88_2DFDF20B3A47__INCLUDED_#if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000#include <jni.h>class SVNBase{public:    SVNBase();    virtual ~SVNBase();    /**     * Return @c this as a @c jlong.     *     * @since 1.4.0     */    jlong getCppAddr();    /**     * Deletes this C++ peer object, and clears the memory address of     * the corresponding Java object @a jthis which points to it.     *     * @since 1.4.0     */    virtual void dispose(jobject jthis) = 0;    /**     * This method should never be called, as @c dispose() should be     * called explicitly.  When @c dispose() fails to be called, this     * method assures that this C++ peer object has been enqueued for     * deletion.     *     * @since 1.4.0     */    void finalize();protected:    /**     * Return the value of the @c cppAddr instance field from the @a     * jthis Java object, or @c 0 if an error occurs, or the address     * otherwise can't be determined.  @a fid is expected to point to     * 0 if not already known, in which case it's looked up using @a     * className.     *     * @since 1.4.0     */    static jlong findCppAddrForJObject(jobject jthis, jfieldID *fid,                                       const char *className);    /**     * Deletes @c this, then attempts to null out the @c jthis.cppAddr     * instance field on the corresponding Java object.     *     * @since 1.4.0     */    void dispose(jobject jthis, jfieldID *fid, const char *className);private:    /**     * If the value pointed to by @a fid is zero, find the @c jfieldID     * for the @c cppAddr instance field of @c className.     *     * @since 1.4.0     */    static void findCppAddrFieldID(jfieldID *fid, const char *className,                                   JNIEnv *env);};// !defined(AFX_SVNBASE_H__ABF82C7E_0C50_40EA_8C88_2DFDF20B3A47__INCLUDED_)#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -