22 lines
396 B
C++
22 lines
396 B
C++
#pragma once
|
|
#include <string_view>
|
|
#include <QWidget>
|
|
#include <QString>
|
|
|
|
namespace Psc {
|
|
void set_help_text(QWidget* widget, const QString& text);
|
|
std::string get_config_dir();
|
|
|
|
|
|
class Base_Cache
|
|
{
|
|
public:
|
|
std::string id;
|
|
Base_Cache(std::string_view id);
|
|
std::string get_config_path() const;
|
|
std::atomic_bool init = false;
|
|
};
|
|
|
|
|
|
|
|
} |