mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-12 16:25:59 -04:00
Add KeePass2Writer.
Support attributes MasterKeyChanged, MasterKeyChangeRec, MasterKeyChangeForce and Tags. Close streams in the dtor.
This commit is contained in:
parent
a9ac4bbf41
commit
e3da80fcc6
22 changed files with 397 additions and 39 deletions
|
@ -24,6 +24,11 @@ LayeredStream::LayeredStream(QIODevice* baseDevice)
|
|||
connect(baseDevice, SIGNAL(aboutToClose()), SLOT(closeStream()));
|
||||
}
|
||||
|
||||
LayeredStream::~LayeredStream()
|
||||
{
|
||||
close();
|
||||
}
|
||||
|
||||
bool LayeredStream::isSequential() const
|
||||
{
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue