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

📄 hnrect.cpp

📁 SR-tree is an index structure for high-dimensional nearest neighbor queries
💻 CPP
字号:
/*
 * HnRect.cc
 *
 * DO NOT EDIT THIS FILE!
 *
 * This file is automatically generated by obj2ptr.
 * 2002/09/13 12:44:53
 */

#include "HnSRTree/HnRect.hh"
#include "HnSRTree/HnRectObj.hh"

/*
 * HnRect
 */

const HnRect HnRect::null;

HnRect
new_HnRect(int dimension)
{
    HnRectObj *_obj;

    _obj = new HnRectObj(dimension);

    if ( _obj->hasConstructorFailed() ) {
        delete _obj;
        return (HnRectObj *)NULL;
    }

    return _obj;
}

HnRect
new_HnRect(int dimension, HnBlockStream &blockStream)
{
    HnRectObj *_obj;

    _obj = new HnRectObj(dimension, blockStream);

    if ( _obj->hasConstructorFailed() ) {
        delete _obj;
        return (HnRectObj *)NULL;
    }

    return _obj;
}

HnRect
new_HnRect(const HnRect &rect)
{
    HnRectObj *_obj;

    _obj = new HnRectObj(rect);

    if ( _obj->hasConstructorFailed() ) {
        delete _obj;
        return (HnRectObj *)NULL;
    }

    return _obj;
}

#define HnClass HnRect
#include "HnSRTree/HnClassArray.cpp"

⌨️ 快捷键说明

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