lines-are-beautiful  0.0
A C++ file API for the reMarkable e-ink tablet
rmlab.hpp
1 /* Copyright 2017-2018 Axel Huebl
2  *
3  * This file is part of lines-are-beautiful.
4  *
5  * lines-are-beautiful is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * lines-are-beautiful is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with lines-are-beautiful.
17  * If not, see <http://www.gnu.org/licenses/>.
18  */
19 
59 #pragma once
60 
61 // objects for file hierarchy
62 #include "Notebook.hpp"
63 #include "Page.hpp"
64 #include "Layer.hpp"
65 #include "Line.hpp"
66 #include "Point.hpp"
67 
68 
69 namespace rmlab
70 {
71 
72 }
Definition: Layer.hpp:33