keepassxc/src/core/Exporter.h
Louis-Bertrand Varin 8324d03f0a Formatting the code.
2018-03-31 16:01:30 -04:00

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