CubicSDR/src/SessionMgr.h

15 lines
258 B
C
Raw Permalink Normal View History

2019-01-30 23:24:33 -05:00
// 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(const std::string& fileName);
2019-01-30 23:24:33 -05:00
};