Base: fix warnings from code analysers:

* replace some C-style casts with static_cast
* remove unneeded destructors
* define default copy-constructor and assignment operator
This commit is contained in:
wmayer
2022-03-05 19:03:21 +01:00
parent 9de55d010c
commit a6624ef264
8 changed files with 34 additions and 33 deletions

View File

@@ -296,7 +296,6 @@ class BaseExport Reader : public std::istream
{
public:
Reader(std::istream&, const std::string&, int version);
~Reader();
std::istream& getStream();
std::string getFileName() const;
int getFileVersion() const;