config_file.cpp (Firebird-3.0.2.32703-0.tar.bz2) | : | config_file.cpp (Firebird-3.0.4.33054-0.tar.bz2) | ||
---|---|---|---|---|
skipping to change at line 112 | skipping to change at line 112 | |||
{ | { | |||
return file.hasData(); | return file.hasData(); | |||
} | } | |||
const char* getFileName() const | const char* getFileName() const | |||
{ | { | |||
return fileName.c_str(); | return fileName.c_str(); | |||
} | } | |||
private: | private: | |||
AutoPtr<FILE, FileClose> file; | AutoPtr<FILE> file; | |||
Firebird::PathName fileName; | Firebird::PathName fileName; | |||
unsigned int l; | unsigned int l; | |||
}; | }; | |||
class TextStream : public ConfigFile::Stream | class TextStream : public ConfigFile::Stream | |||
{ | { | |||
public: | public: | |||
explicit TextStream(const char* configText) | explicit TextStream(const char* configText) | |||
: s(configText), l(0) | : s(configText), l(0) | |||
{ | { | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |