12 lines
201 B
C++
12 lines
201 B
C++
|
|
#ifndef REPOSITORY_INTERFACE_H
|
||
|
|
#define REPOSITORY_INTERFACE_H
|
||
|
|
|
||
|
|
#include <QVariant>
|
||
|
|
|
||
|
|
class RepositoryInterface {
|
||
|
|
public:
|
||
|
|
virtual ~RepositoryInterface() = default;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // REPOSITORY_INTERFACE_H
|