Files
crosspoint-reader/src/CrossPointState.h

14 lines
198 B
C
Raw Normal View History

2025-12-04 00:07:25 +11:00
#pragma once
#include <iosfwd>
#include <string>
class CrossPointState {
public:
std::string openEpubPath;
~CrossPointState() = default;
2025-12-06 12:56:39 +11:00
bool saveToFile() const;
bool loadFromFile();
2025-12-04 00:07:25 +11:00
};