Remove the "current" book functionnality.

- This is not used by any application.
- This is application specific and should not be stored in the library
  (who is a list of book).
This commit is contained in:
Matthieu Gautier
2018-08-30 10:57:43 +02:00
parent c9eac04050
commit 541fb0cfd1
3 changed files with 0 additions and 57 deletions

View File

@ -115,22 +115,6 @@ class Manager
*/
bool removeBookById(const string id);
/**
* Set the current book.
*
* @param id The id to add to the stack of current books.
* If id is empty, remove the current book from the stack.
* @return True
*/
bool setCurrentBookId(const string id);
/**
* Get the current book id.
*
* @return The id of the current book (or empty string if no current book).
*/
string getCurrentBookId() const;
/**
* Set the path of the external fulltext index associated to a book.
*
@ -193,14 +177,6 @@ class Manager
*/
bool getBookById(const string id, Book& book);
/**
* Get the current book.
*
* @param[out] The current book.
* @return True if there is a current book.
*/
bool getCurrentBook(Book& book);
/**
* Update the "last open date" of a book
*