mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-15 03:08:52 +01:00
11 lines
163 B
C++
11 lines
163 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class Metadata
|
|
{
|
|
public:
|
|
virtual ~Metadata() {}
|
|
virtual bool Import(std::string file, std::string collectionName) = 0;
|
|
};
|