home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
...taking it to the Macs!
/
...taking it to the Macs!.iso
/
Extras
/
ActiveX Mac SDK
/
ActiveX SDK
/
Common
/
CRefCount.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1997-01-02
|
222 b
|
17 lines
|
[
TEXT/CWIE
]
#ifndef _H_CRefCount
#define _H_CRefCount
#pragma once
class CRefCount
{
public:
// *** CRefCount methods ***
CRefCount(void) { mRefCount = 1; }
protected:
Uint32 mRefCount; // Reference Count
};
#endif