blob: a6a43f9f143293ed66b55fa4d96a373d4a03f5e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- src/UserCompress.hpp.orig 1999-11-24 16:32:52.000000000 +1100
+++ src/UserCompress.hpp 2003-10-07 02:11:37.000000000 +1000
@@ -61,7 +61,7 @@
// This object is then registered and provides basic capabilities
// such as returning its name, instantiating compressor or decompressor
{
- friend CompressMan;
+ friend class CompressMan;
UserCompressorFactory *next; // The next factory in the list of compressor factories
@@ -115,7 +115,7 @@
class UserCompressor
{
- friend CompressMan;
+ friend class CompressMan;
protected:
unsigned short datasize; // The memory space needed for representing the state
@@ -182,7 +182,7 @@
class UserUncompressor
{
- friend CompressMan;
+ friend class CompressMan;
protected:
unsigned short datasize; // The size of the user compressor state space
|