mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
15 lines
226 B
C++
15 lines
226 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
|