AppleWin/source/frontends/common2/fileregistry.h
Andrea Odetti bde3eb92b0 Improve symmetry of Constructor/Destructor functions.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-05-24 09:22:01 +01:00

16 lines
259 B
C++

#pragma once
#include <string>
#include <memory>
class Registry;
namespace common2
{
struct EmulatorOptions;
std::string GetConfigFile(const std::string & filename);
std::shared_ptr<Registry> CreateFileRegistry(const EmulatorOptions & options);
}