Files
sunshine-testing-fork/src/platform/windows/nvprefs/nvprefs_interface.h
T
2024-01-20 17:05:35 -05:00

40 lines
527 B
C++

#pragma once
// standard library headers
#include <memory>
namespace nvprefs {
class nvprefs_interface {
public:
nvprefs_interface();
~nvprefs_interface();
bool
load();
void
unload();
bool
restore_from_and_delete_undo_file_if_exists();
bool
modify_application_profile();
bool
modify_global_profile();
bool
owning_undo_file();
bool
restore_global_profile();
private:
struct impl;
std::unique_ptr<impl> pimpl;
};
} // namespace nvprefs