There is this simple Singleton function:
const AppConfig& AppConfig::Singleton() { static AppConfig appConfig{ configPath_ }; return appConfig; }