blob: 98421beece7be0cf343e385a0b575bad60845df8 [file] [log] [blame]
#pragma once
#include <string>
namespace interfaces
{
class Report
{
public:
virtual ~Report() = default;
virtual std::string getName() const = 0;
virtual std::string getPath() const = 0;
};
} // namespace interfaces