mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
CAutoFile: make file private
This commit is contained in:
parent
0c35486dc9
commit
938bccebf1
1 changed files with 4 additions and 3 deletions
|
|
@ -1166,12 +1166,13 @@ private:
|
|||
// Disallow copies
|
||||
CAutoFile(const CAutoFile&);
|
||||
CAutoFile& operator=(const CAutoFile&);
|
||||
protected:
|
||||
FILE* file;
|
||||
public:
|
||||
|
||||
int nType;
|
||||
int nVersion;
|
||||
|
||||
FILE* file;
|
||||
|
||||
public:
|
||||
CAutoFile(FILE* filenew, int nTypeIn, int nVersionIn)
|
||||
{
|
||||
file = filenew;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue