mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 10:09:03 +00:00
27 lines
591 B
C++
27 lines
591 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct BreweryResult {
|
|
std::string name;
|
|
std::string description;
|
|
};
|
|
|
|
struct UserResult {
|
|
std::string username;
|
|
std::string bio;
|
|
};
|
|
|
|
class IDataGenerator {
|
|
public:
|
|
virtual ~IDataGenerator() = default;
|
|
|
|
virtual void load(const std::string &modelPath) = 0;
|
|
|
|
virtual BreweryResult generateBrewery(const std::string &cityName,
|
|
const std::string &countryName,
|
|
const std::string ®ionContext) = 0;
|
|
|
|
virtual UserResult generateUser(const std::string &locale) = 0;
|
|
};
|