lines-are-beautiful
0.0
A C++ file API for the reMarkable e-ink tablet
|
#include <Notebook.hpp>
Public Member Functions | |
Notebook () | |
Notebook (std::string const openFilename) | |
void | save (std::string const saveFilename) |
Public Attributes | |
int32_t | npages |
std::string | filename |
std::list< Page > | pages |
Base unit of the reMarkable note-taking system, used similarly to a real-world notebook. It is made up of a set of pages.
rmlab::Notebook::Notebook | ( | ) |
Open a new, empty notebook.
rmlab::Notebook::Notebook | ( | std::string const | openFilename | ) |
Open a notebook.
openFilename | Path to the file containing the notebook data following the .lines format. |
std::string rmlab::Notebook::filename |
Path to the binary file containing from which the notebook has been read.
int32_t rmlab::Notebook::npages |
Number of pages in this notebook.
std::list< Page > rmlab::Notebook::pages |
All the pages of this notebook.