keepassxc/src/core/Exporter.h

15 lines
226 B
C++
Raw Normal View History

2014-05-16 06:30:47 -04:00
#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