mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-23 17:10:51 +01:00
19 lines
281 B
C++
19 lines
281 B
C++
#pragma once
|
|
|
|
#include "util/Config.h"
|
|
|
|
struct cfg_upnp : cfg::node
|
|
{
|
|
cfg::string device_url{this, "DeviceUrl", ""};
|
|
|
|
void load();
|
|
void save() const;
|
|
|
|
std::string get_device_url() const;
|
|
|
|
void set_device_url(std::string_view url);
|
|
|
|
private:
|
|
static std::string get_path();
|
|
};
|