mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-03 19:50:55 -05:00
17 lines
235 B
C++
17 lines
235 B
C++
#ifndef KEEPASSX_EXPORTER_H
|
|
#define KEEPASSX_EXPORTER_H
|
|
|
|
class Database;
|
|
class Group;
|
|
|
|
class Exporter
|
|
{
|
|
public:
|
|
virtual Database* exportGroup(Group* group) = 0;
|
|
virtual ~Exporter()
|
|
{
|
|
}
|
|
};
|
|
|
|
#endif // KEEPASSX_EXPORTER_H
|