Skip to content

Commit c7771df

Browse files
fixed book IDs
1 parent 057d7d2 commit c7771df

12 files changed

+6
-16
lines changed

BookStore.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,7 @@ void BookStore::removeBook(const String& title)
381381
return;
382382
}
383383
books.removeAt(indexOfBook);
384+
this->total--;
384385
std::cout << "Book successfully removed!\n";
385386
}
386387

@@ -404,7 +405,7 @@ void BookStore::loadBooks(std::ifstream& in,size_t skip)
404405
book.loadBook(in);
405406
books.pushBack(book);
406407
}
407-
this->id = books.getSize() + 1;
408+
this->id = books[books.getSize() - 1].getID() + 1;
408409
}
409410

410411
void BookStore::saveBooks(std::ofstream& out)

Database2.txt

+1-13
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ admin
33
i<3c++
44
1
55
1
6-
2
6+
1
77
MyFirstBook
88
iAmTheAuthor
99
sci-fi
@@ -16,15 +16,3 @@ stars
1616
2021
1717
100
1818
1
19-
MySecondBook
20-
iAmTheAuthor
21-
adventure
22-
A cool book about dinosaurs
23-
4
24-
dino
25-
BC
26-
animals
27-
adventure
28-
2021
29-
100
30-
2

Debug/BookStore.obj

63 Bytes
Binary file not shown.

Debug/Library.log

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
 Book.cpp
1+
 BookStore.cpp
2+
D:\VisualStudio2019\ООП-Л\Course Project\Library\Library\BookStore.cpp(397,20): warning C4018: '<': signed/unsigned mismatch
23
Library.vcxproj -> D:\VisualStudio2019\ООП-Л\Course Project\Library\Debug\Library.exe

Debug/Library.obj

-1 Bytes
Binary file not shown.

Debug/Library.tlog/CL.command.1.tlog

0 Bytes
Binary file not shown.

Debug/Library.tlog/CL.read.1.tlog

800 Bytes
Binary file not shown.

Debug/Library.tlog/CL.write.1.tlog

604 Bytes
Binary file not shown.

Debug/Library.tlog/link.read.1.tlog

-232 Bytes
Binary file not shown.

Debug/vc142.idb

0 Bytes
Binary file not shown.

Debug/vc142.pdb

0 Bytes
Binary file not shown.

Library.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ void Library::help() const
194194
{
195195
std::cout << "Available commands:\n";
196196
std::cout << "help opens the help menu\n";
197-
std::cout << "open <file name> opens <file name>\n";
197+
std::cout << "open <location> opens <file name>\n";
198198
std::cout << "close closes the current file\n";
199199
std::cout << "save saves the current file\n";
200200
std::cout << "save as <location> saves the current file in <location>\n";

0 commit comments

Comments
 (0)