refcntmem.h

来自「图像拼接框架源码」· C头文件 代码 · 共 20 行

H
20
字号
///////////////////////////////////////////////////////////////////////////
//
// NAME
//  RefCntMem.h -- reference-counted heap memory
//
// DESCRIPTION
//  The CRefCntMem class is used to manage reference-counted
//  dynamically allocatable memory.  This memory can be shared
//  across many instances of the class object, provided they
//  were created from each other through copy construction or assignment.
//
//  Using the class in a large memory object class such as CImage allows
//  the including class to achieve a similar kind of memory sharing as
//  is found in garbage collected languages such as Java and C#.
//
// SEE ALSO
//  RefCntMem.cpp       implementation
//  Image.h             class that uses a CRefCntMem object
//
// Copyright 

⌨️ 快捷键说明

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