mirror of
https://github.com/jakcron/nstool
synced 2024-11-22 21:49:30 +00:00
[fnd] Update IFile & ISerialisable with bettered virtual dtor.
This commit is contained in:
parent
3716bf0b82
commit
9e86d96b84
2 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,7 @@ namespace fnd
|
|||
class IFile
|
||||
{
|
||||
public:
|
||||
inline virtual ~IFile() {}
|
||||
virtual ~IFile() = default;
|
||||
|
||||
virtual size_t size() = 0;
|
||||
virtual void seek(size_t offset) = 0;
|
||||
|
|
|
@ -7,6 +7,8 @@ namespace fnd
|
|||
class ISerialisable
|
||||
{
|
||||
public:
|
||||
virtual ~ISerialisable() = default;
|
||||
|
||||
// serialise
|
||||
virtual void toBytes() = 0;
|
||||
// deserialise
|
||||
|
|
Loading…
Reference in a new issue