Skip to content

Commit 27eaa6a

Browse files
committed
Glyphs pool, license update, debugging
1 parent 306eb10 commit 27eaa6a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+338
-40
lines changed

.vscode/settings.json

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,58 @@
33
"array": "cpp",
44
"string": "cpp",
55
"string_view": "cpp",
6-
"random": "cpp"
6+
"random": "cpp",
7+
"atomic": "cpp",
8+
"bit": "cpp",
9+
"*.tcc": "cpp",
10+
"cctype": "cpp",
11+
"chrono": "cpp",
12+
"cinttypes": "cpp",
13+
"clocale": "cpp",
14+
"cmath": "cpp",
15+
"condition_variable": "cpp",
16+
"cstdarg": "cpp",
17+
"cstddef": "cpp",
18+
"cstdint": "cpp",
19+
"cstdio": "cpp",
20+
"cstdlib": "cpp",
21+
"cstring": "cpp",
22+
"ctime": "cpp",
23+
"cwchar": "cpp",
24+
"cwctype": "cpp",
25+
"deque": "cpp",
26+
"forward_list": "cpp",
27+
"list": "cpp",
28+
"map": "cpp",
29+
"unordered_map": "cpp",
30+
"vector": "cpp",
31+
"exception": "cpp",
32+
"algorithm": "cpp",
33+
"functional": "cpp",
34+
"iterator": "cpp",
35+
"memory": "cpp",
36+
"memory_resource": "cpp",
37+
"numeric": "cpp",
38+
"optional": "cpp",
39+
"ratio": "cpp",
40+
"system_error": "cpp",
41+
"tuple": "cpp",
42+
"type_traits": "cpp",
43+
"utility": "cpp",
44+
"fstream": "cpp",
45+
"initializer_list": "cpp",
46+
"iosfwd": "cpp",
47+
"iostream": "cpp",
48+
"istream": "cpp",
49+
"limits": "cpp",
50+
"mutex": "cpp",
51+
"new": "cpp",
52+
"ostream": "cpp",
53+
"sstream": "cpp",
54+
"stdexcept": "cpp",
55+
"streambuf": "cpp",
56+
"thread": "cpp",
57+
"typeinfo": "cpp",
58+
"variant": "cpp"
759
}
860
}

include/app_controller.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __APP_CONTROLLER_HPP__
26
#define __APP_CONTROLLER_HPP__
37

include/book_controller.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __BOOK_CONTROLLER_HPP__
26
#define __BOOK_CONTROLLER_HPP__
37

include/book_view.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __BOOK_VIEW_HPP__
26
#define __BOOK_VIEW_HPP__
37

include/books_dir.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __BOOKS_DIR_HPP__
26
#define __BOOKS_DIR_HPP__
37

include/books_dir_controller.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __BOOKS_DIR_CONTROLLER_HPP__
26
#define __BOOKS_DIR_CONTROLLER_HPP__
37

include/books_dir_view.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __BOOKS_DIR_VIEW_HPP__
26
#define __BOOKS_DIR_VIEW_HPP__
37

include/css.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __CSS_HPP__
26
#define __CSS_HPP__
37

include/epub.hpp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __EPUB_HPP__
26
#define __EPUB_HPP__
37

@@ -47,9 +51,9 @@ class EPub
4751
bool file_is_open;
4852

4953
const char * get_meta(const std::string & name);
50-
bool get_opf(const char * filename);
54+
bool get_opf(std::string & filename);
5155
bool check_mimetype();
52-
const char * get_opf_filename();
56+
bool get_opf_filename(std::string & filename);
5357
void retrieve_fonts_from_css(CSS & css);
5458

5559
public:

include/eventmgr.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2020 Guy Turcotte
2+
//
3+
// MIT License. Look at file licenses.txt for details.
4+
15
#ifndef __EVENTMGR_HPP__
26
#define __EVENTMGR_HPP__
37

0 commit comments

Comments
 (0)