mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-11 20:28:30 -05:00
![Aleksa Sarai](/assets/img/avatar_default.png)
In order for scripting to be much simpler with `keepassxc-cli show`, provide a simple --attributesk API which effectively is just a CLI interface for entry->attributes()->value(...). This allows for more extensibility and prevents changes in our output formatting from breaking existing users of keepassxc-cli (if they use --attributes). Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
33 lines
1006 B
C++
33 lines
1006 B
C++
/*
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
* version 3 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef KEEPASSXC_SHOW_H
|
|
#define KEEPASSXC_SHOW_H
|
|
|
|
#include "Command.h"
|
|
|
|
class Show : public Command
|
|
{
|
|
public:
|
|
Show();
|
|
~Show();
|
|
int execute(QStringList arguments);
|
|
int showEntry(Database* database, QStringList attributes, QString entryPath);
|
|
};
|
|
|
|
#endif // KEEPASSXC_SHOW_H
|