mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-10 14:23:27 -05:00
15 lines
251 B
C
15 lines
251 B
C
|
// Copyright (c) Charles J. Cliffe
|
||
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "DataTree.h"
|
||
|
#include "AppFrame.h"
|
||
|
|
||
|
|
||
|
class SessionMgr {
|
||
|
public:
|
||
|
void saveSession(std::string fileName);
|
||
|
bool loadSession(std::string fileName);
|
||
|
};
|