15 lines
372 B
C++
15 lines
372 B
C++
#pragma once
|
|
|
|
#include <warppipe/warppipe.hpp>
|
|
|
|
#include <QString>
|
|
|
|
class WarpGraphModel;
|
|
|
|
class PresetManager {
|
|
public:
|
|
static bool savePreset(const QString &path, warppipe::Client *client,
|
|
const WarpGraphModel *model);
|
|
static bool loadPreset(const QString &path, warppipe::Client *client,
|
|
WarpGraphModel *model);
|
|
};
|