40 lines
527 B
C++
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
|